2024-01-05 12:14:38 +00:00
|
|
|
export declare const isUndefined: (value: any) => value is undefined;
|
|
|
|
|
export declare const isString: (value: any) => value is string;
|
|
|
|
|
export declare const isNumber: (value: any) => value is number;
|
|
|
|
|
export declare const isFunction: (value: any) => value is Function;
|
2026-02-13 07:35:14 +00:00
|
|
|
export declare const isPromise: <T>(value: T | Promise<T>) => value is Promise<T>;
|
2024-01-05 12:14:38 +00:00
|
|
|
export * from "./extractAdditionalParams";
|
|
|
|
|
export * from "./featureDetection";
|
2026-02-13 07:35:14 +00:00
|
|
|
export * from "./objectQueryTracker";
|