UNPKG

361 BTypeScriptView Raw
1export declare function isNull(value: unknown): value is null | undefined;
2export declare function isObject<V = any>(value: unknown): value is Record<keyof any, V>;
3export declare function isString(value: unknown): value is string;
4export declare function isBool(value: unknown): value is boolean;
5export declare const isArray: (arg: any) => arg is any[];