Codebase list ohcount / 6c6b3496-5c95-4881-94ad-331592f9fd83/main test / src_dir / ts1.ts
6c6b3496-5c95-4881-94ad-331592f9fd83/main

Tree @6c6b3496-5c95-4881-94ad-331592f9fd83/main (Download .tar.gz)

ts1.ts @6c6b3496-5c95-4881-94ad-331592f9fd83/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}`;
    }
}