bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
25 lines (24 loc) • 598 B
TypeScript
/**
* @param obj
* @returns
*/
export declare const isObject: (obj: unknown) => obj is Record<PropertyKey, unknown>;
/**
* @param value
* @returns
*/
export declare const isNumeric: (value: unknown) => boolean;
/**
* Strict object type check. Only returns true for plain JavaScript objects
*
* @param obj
* @returns
*/
export declare const isPlainObject: (obj: unknown) => obj is Record<PropertyKey, unknown>;
/**
* Strict object type check. Only returns true for plain JavaScript objects
*
* @param obj
* @returns
*/
export declare const isNull: (value: unknown) => value is null;