mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
11 lines
No EOL
146 B
TypeScript
11 lines
No EOL
146 B
TypeScript
function MyFunction() {
|
|
return 'here is my function'
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
MyFunction: typeof MyFunction
|
|
}
|
|
}
|
|
|
|
export {} |