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 GC(): void;
|
11 | export declare function releaseNativeObject(object: java.lang.Object): void;
|
12 | export declare function openUrl(location: string): boolean;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare function openFile(filePath: string, title?: string): boolean;
|
20 | export declare function isRealDevice(): boolean;
|
21 | export declare function dismissSoftInput(nativeView?: any): void;
|
22 | export declare function dismissKeyboard(): void;
|
23 | export declare function copyToClipboard(value: string): void;
|