UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

23 lines (22 loc) 1.01 kB
export { clearInterval, clearTimeout, setInterval, setTimeout } from '../timer'; export * from './animation-helpers'; export * from './common'; export * from './constants'; export * from './debug'; export * from './layout-helper'; export * from './macrotask-scheduler'; export * from './mainthread-helper'; export * from './native-helper'; export * from './shared'; export * from './types'; export * from './native-helper'; export declare function openFile(filePath: string): boolean; export declare function GC(): void; export declare function queueGC(delay?: number, useThrottle?: boolean): void; export declare function releaseNativeObject(object: NSObject): void; export declare function openUrl(location: string): boolean; export declare function openUrlAsync(location: string): Promise<boolean>; export declare const ad = 0; export declare function dismissSoftInput(nativeView?: UIView): void; export declare function dismissKeyboard(): void; export declare function copyToClipboard(value: string): void;