frontend/.pnpm-store/v3/files/9d/842a1da31fa23dff54e3de5ba5d11043a710709f490dc6c13ac51e73dcb4551d4748a14ffca919f5559127d1a1a31061038c01c6aa147870de4e0da71afbfc

7 lines
220 B
Plaintext

export declare type Fork = {
use<T>(plugin: Plugin<T>): T;
};
export declare type Plugin<T> = (fork: Fork) => T;
export declare type Def = Plugin<void>;
export declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;