You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

types.d.ts 220B

123456
  1. export declare type Fork = {
  2. use<T>(plugin: Plugin<T>): T;
  3. };
  4. export declare type Plugin<T> = (fork: Fork) => T;
  5. export declare type Def = Plugin<void>;
  6. export declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;