13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
/**
|
|
* @interface TUIGlobal
|
|
*/
|
|
export interface ITUIGlobal {
|
|
global: any; // 挂在 wx、uni、window 对象
|
|
isOfficial: boolean;
|
|
[key: string]: any;
|
|
|
|
initOfficial(isOfficial: boolean): void;
|
|
|
|
getPlatform(): string;
|
|
}
|