Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / ts1.ts
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

ts1.ts @upstream/4.0.0+git20210223.6654d48raw · history · blame

/*
 * This is a TypeScript File
 */

// And a regular comment

export class SomeClass {
    public text: string;

    public sayHello(name: string): string {
        return `Hello, ${name}`;
    }
}