TypeScript/tests/cases/compiler/declarationEmitIndexTypeArray.ts

7 lines
133 B
TypeScript
Raw Normal View History

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