roomkit-web-vue3
Version:
<h1 align="center"> TUIRoomKit</h1> Conference (TUIRoomKit) is a product suitable for multi-person audio and video conversation scenarios such as business meetings, webinars, and online education. By integrating this product, you can add room management,
13 lines (12 loc) • 667 B
TypeScript
export declare const isArray: (arg: any) => arg is any[];
export declare const isMap: (val: any) => boolean;
export declare const isSet: (val: any) => boolean;
export declare const isDate: (val: any) => val is Date;
export declare const isFunction: (val: any) => boolean;
export declare const isString: (val: any) => val is string;
export declare const isSymbol: (val: any) => val is symbol;
export declare const isObject: (val: any) => boolean;
export declare const isPromise: (val: any) => boolean;
export declare const isUrl: (url: string) => boolean;
export declare const isJSON: (str: string) => boolean;
export declare const JSONToObject: (str: string) => any;