Codebase list ohcount / c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main test / src_dir / ts1.ts
c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main

Tree @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main (Download .tar.gz)

ts1.ts @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/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}`;
    }
}