type-fest/test-d/string-key-of.ts
Sindre Sorhus e3234d74aa Use import type
Closes #390
2022-04-09 19:04:14 +07:00

10 lines
182 B
TypeScript

import {expectType} from 'tsd';
import type {StringKeyOf} from '../index';
declare const foo: StringKeyOf<{
1: number;
stringKey: string;
}>;
expectType<'1' | 'stringKey'>(foo);