sinch-rtc
Version:
RTC JavaScript/Web SDK
13 lines (12 loc) • 419 B
TypeScript
/**
* Helper functions concerning types of variables TODO: check if required while using TypeScript
*/
export declare class TypeHelper {
static isPlainObject(o: any): boolean;
static isArray(a: any): boolean;
static isString(s: any): boolean;
static isWordArray(i: any): boolean;
static isDateObject(d: any): boolean;
static isBoolean(b: any): boolean;
static isNumber(n: any): boolean;
}