1
Fork 0

Add a TypeScript test sample.

This commit is contained in:
Bauke 2022-12-02 11:53:17 +01:00
parent 16c32118e4
commit 342ac23c96
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
const title = "Sample TypeScript";
export function sample(): string {
return title;
}