TypeScript/tests/baselines/reference/augmentArray.js

7 lines
89 B
JavaScript
Raw Normal View History

//// [augmentArray.ts]
interface Array<T> {
(): any[];
}
//// [augmentArray.js]