Last active
August 11, 2020 08:15
-
-
Save vschoener/0252b74b6835541d8b1be14bfe3571b3 to your computer and use it in GitHub Desktop.
fixed main example Setup TypeScript project with art
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 fs from 'fs'; | |
import { GoogleService } from './services/google.service'; | |
import { AwsService } from './services/aws.service'; | |
const user = { | |
name: 'john', | |
lastname: 'doe', | |
}; | |
console.log(new AwsService().log('test')); | |
console.log(new GoogleService().call('test')); | |
console.log(user); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment