UNPKG

@polyfill-io-aot/builder

Version:

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

7 lines (6 loc) 233 B
import { Diff } from './Diff'; /** * Instead of picking separate properties, omit them * @see http://ideasintosoftware.com/typescript-advanced-tricks/ */ export declare type Omit<T, K extends keyof T> = Pick<T, Diff<keyof T, K>>;