TypeScript/tests/cases/compiler/declarationEmitIndexTypeArray.ts
2017-06-13 14:00:26 -07:00

7 lines
133 B
TypeScript

// @declaration: true
function doSomethingWithKeys<T>(...keys: (keyof T)[]) { }
const utilityFunctions = {
doSomethingWithKeys
};