UNPKG

919 BTypeScriptView Raw
1export declare const RUNTIME_CHECK_URL = "https://ngrx.io/guide/store/configuration/runtime-checks";
2export declare function isUndefined(target: any): target is undefined;
3export declare function isNull(target: any): target is null;
4export declare function isArray(target: any): target is Array<any>;
5export declare function isString(target: any): target is string;
6export declare function isBoolean(target: any): target is boolean;
7export declare function isNumber(target: any): target is number;
8export declare function isObjectLike(target: any): target is object;
9export declare function isObject(target: any): target is object;
10export declare function isPlainObject(target: any): target is object;
11export declare function isFunction(target: any): target is () => void;
12export declare function isComponent(target: any): boolean;
13export declare function hasOwnProperty(target: object, propertyName: string): boolean;