UNPKG

413 BTypeScriptView Raw
1export declare type IDisposer = () => void;
2export declare const NOOP: () => void;
3export declare const IDENTITY: (_: any) => any;
4export declare function fail(message: string): never;
5export declare function invariant(cond: boolean, message?: string): void;
6export declare function addHiddenProp(object: any, propName: string, value: any): void;
7export declare const getAllMethodsAndProperties: (x: any) => any;