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