6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
|
const title = "Sample TypeScript";
|
||
|
|
||
|
export function sample(): string {
|
||
|
return title;
|
||
|
}
|