UNPKG

@polyfill-io-aot/builder

Version:

This is the builder module for polyfill-io-aot.

9 lines (8 loc) 256 B
/** @see http://ideasintosoftware.com/typescript-advanced-tricks/ */ export declare type Diff<T extends (string | number | symbol), U extends (string | number | symbol)> = ({ [P in T]: P; } & { [P in U]: never; } & { [x: string]: never; })[T];