oxc/crates/oxc_isolated_declarations/tests/fixtures/declare-global.ts

11 lines
No EOL
146 B
TypeScript

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