UNPKG

ts-essentials

Version:

All essential TypeScript types in one place

2 lines (1 loc) 133 B
export declare type Exact<Type, Shape> = Type extends Shape ? Exclude<keyof Type, keyof Shape> extends never ? Type : never : never;