mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
/* tslint:disable:no-unused-variable */
|
|
// Android specific TypeScript declarations
|
|
declare function float(num: number): any;
|
|
declare function long(num: number): any;
|
|
|
|
declare var gc: () => void;
|
|
|
|
declare function float(num: number): any;
|
|
declare function long(num: number): any;
|
|
|
|
interface ArrayConstructor {
|
|
create(type: any, count: number): any;
|
|
}
|
|
|
|
declare module native { export class Array<T> { constructor(); length: number; [index: number]: T; } }
|
|
|
|
import globalAndroid = android;
|