Codebase list ohcount / d4c3f612-6685-4dc0-9339-5433a0a275c0/main test / src_dir / ts1.ts
d4c3f612-6685-4dc0-9339-5433a0a275c0/main

Tree @d4c3f612-6685-4dc0-9339-5433a0a275c0/main (Download .tar.gz)

ts1.ts @d4c3f612-6685-4dc0-9339-5433a0a275c0/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}`;
    }
}