mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
15 lines
No EOL
250 B
TypeScript
15 lines
No EOL
250 B
TypeScript
export function foo(): void {}
|
|
foo.apply = () => {}
|
|
|
|
export const bar = (): void => {}
|
|
bar.call = ()=> {}
|
|
|
|
|
|
export namespace NS {
|
|
export const goo = (): void => {}
|
|
goo.length = 10
|
|
}
|
|
|
|
// unexported
|
|
const zoo = (): void => {}
|
|
zoo.toString = ()=> {} |