Files
2025-04-01 14:31:16 -07:00

5 lines
111 B
TypeScript

declare const y: string;
enum J { x = "hello " }
const hello: string = "world";
module.exports = J.x + hello!;