mux-lib
Version:
18 lines (17 loc) • 872 B
TypeScript
import isPlainObject from "is-plain-object";
import invariant from "invariant";
import warning from "warning";
export { invariant, warning };
export { isPlainObject };
export declare const isArray: ArrayConstructor["isArray"];
export declare const isFunction: (o: any) => o is Function;
export declare const isBoolean: (o: any) => o is boolean;
export declare const isEmptyObject: (o: any) => o is Object;
export declare const isString: (o: any) => o is string;
export declare const checkFunctionType: (o: any) => any;
export declare const isGeneratorFunction: (o: any) => boolean;
export declare const isAsyncFunction: (o: any) => boolean;
export declare const returnSelf: (arg: any) => any;
export declare const noop: () => void;
export declare const hasOwnProperty: (obj: any, key: any) => any;
export declare const mapToObj: (o: Map<any, any>) => {};