Codebase list ohcount / c941801a-846c-49c1-93c4-07f1094d7537/main test / src_dir / ts1.ts
c941801a-846c-49c1-93c4-07f1094d7537/main

Tree @c941801a-846c-49c1-93c4-07f1094d7537/main (Download .tar.gz)

ts1.ts @c941801a-846c-49c1-93c4-07f1094d7537/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}`;
    }
}