1 | export { clearInterval, clearTimeout, setInterval, setTimeout } from '../timer';
|
2 | export * from './common';
|
3 | export * from './constants';
|
4 | export * from './debug';
|
5 | export * from './layout-helper';
|
6 | export * from './macrotask-scheduler';
|
7 | export * from './mainthread-helper';
|
8 | export * from './native-helper';
|
9 | export * from './types';
|
10 | export declare function openFile(filePath: string): boolean;
|
11 | export declare function GC(): void;
|
12 | export declare function releaseNativeObject(object: NSObject): void;
|
13 | export declare function openUrl(location: string): boolean;
|
14 | export declare function isRealDevice(): boolean;
|
15 | export declare const ad = 0;
|
16 | export declare function dismissSoftInput(nativeView?: UIView): void;
|
17 | export declare function dismissKeyboard(): void;
|
18 | export declare function copyToClipboard(value: string): void;
|