This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function format(name: string) | |
{ | |
return function(target: Object, propertyKey: string | symbol) { | |
console.log('name:', name, 'factory args', arguments); | |
}; | |
} | |
class Greeter { | |
@format('test') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Person { | |
name: string; | |
age: number; | |
constructor(name: string) { | |
this.name = name; | |
} | |
greet() { | |
console.log(‘Hello, ‘ + this.name); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Person { | |
name: string; | |
age: number; | |
} | |
export class Customer extends Person { | |
favouriteColour: string; | |
} | |
export class Employee extends Person { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import just the 'Customer' and 'MAXIMUM_PEOPLE' exports from people.ts | |
import { Customer, MAXIMUM_PEOPLE } from './models/people'; | |
let customer = new Customer('Bob', 34); | |
console.log(MAXIMUM_PEOPLE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class Product { | |
name: string; | |
price: number; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Prod from './models/product'; | |
let widget = new Prod(); | |
widget.name = 'Blue Widget'; | |
widget.price = 2.88; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as request from 'request'; | |
request({ url: 'https://randomuser.me/api/', json: true }, | |
function(error, response, data) { | |
if (error) { | |
console.error(error); | |
} | |
else { | |
console.log('Got user data:', data); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as request from 'request'; | |
request({ url: 'https://randomuser.me/api/', json: true }, | |
function(error, response, data) { | |
if (error) { | |
console.error(error); | |
} | |
else { | |
let user = data.results[0]; | |
request({ url: 'http://quotes.rest/qod.json', json: true }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import request from 'axios'; | |
let user: any; | |
let quote: any; | |
request({ url: 'https://randomuser.me/api/', responseType: 'json' }) | |
.then((response) => { | |
user = response.data.results[0]; | |
return request({ url: 'http://quotes.rest/qod.json', responseType: 'json' }); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import request from 'axios'; | |
Promise.all([ | |
request({ url: 'https://randomuser.me/api/', responseType: 'json' }), | |
request({ url: 'http://quotes.rest/qod.json', responseType: 'json' }) | |
]) | |
.then((responses) => { | |
let user = responses[0].data.results[0]; | |
let quote = responses[1].data.contents.quotes[0]; | |
console.log(user.name.first + ' says: ' + quote.quote); |
OlderNewer