oxc/crates/oxc_isolated_declarations/tests/fixtures/declare-global.ts
overlookmotel dc924892cc test: add trailing line breaks to conformance fixtures (#5541)
Continuation of #5537. Ensure all conformance fixture files have a trailing line break.
2024-09-06 12:55:17 +00:00

11 lines
147 B
TypeScript

function MyFunction() {
return 'here is my function'
}
declare global {
interface Window {
MyFunction: typeof MyFunction
}
}
export {}