Create project scaffolding using yo node-typescript

This commit is contained in:
2019-12-14 23:17:13 +05:30
commit 3af08413d8
17 changed files with 4151 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export class Greeter {
private greeting: string;
constructor(message: string) {
this.greeting = message;
}
public greet(): string {
return `Bonjour, ${this.greeting}!`;
}
}
+1
View File
@@ -0,0 +1 @@
export * from './greeter';