coolink
Version:
Coocaa Coolink APP JavaScript library
11 lines (10 loc) • 412 B
TypeScript
import { RequestParams } from '../types/type';
export default class UtilManager {
static request(params: RequestParams, module?: string, method?: string): Promise<any>;
static copy(data: any, showSuccess?: boolean): void;
static blur(): void;
static log(...args: any[]): void;
static warn(...args: any[]): void;
static error(...args: any[]): void;
static isTv(): boolean;
}