Codebase list ohcount / scrub-obsolete/main test / src_dir / ts1.ts
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

ts1.ts @scrub-obsolete/mainraw · 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}`;
    }
}