Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / src_dir / ts1.ts
71f18fd0-2918-4673-9432-32d77816000d/main

Tree @71f18fd0-2918-4673-9432-32d77816000d/main (Download .tar.gz)

ts1.ts @71f18fd0-2918-4673-9432-32d77816000d/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}`;
    }
}