Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / src_dir / ts1.ts
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

ts1.ts @a828f03c-a62e-49d7-b2ec-6e6df59903d2/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}`;
    }
}