Codebase list ohcount / 85104d5a-b71d-4620-9315-33d4daf34104/main test / src_dir / ts1.ts
85104d5a-b71d-4620-9315-33d4daf34104/main

Tree @85104d5a-b71d-4620-9315-33d4daf34104/main (Download .tar.gz)

ts1.ts @85104d5a-b71d-4620-9315-33d4daf34104/main

8e3aae6
 
 
 
 
 
 
 
 
 
 
 
 
/*
 * This is a TypeScript File
 */

// And a regular comment

export class SomeClass {
    public text: string;

    public sayHello(name: string): string {
        return `Hello, ${name}`;
    }
}