forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon-types.d.ts
More file actions
33 lines (30 loc) · 830 Bytes
/
common-types.d.ts
File metadata and controls
33 lines (30 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
declare var UIColor, PHAsset, NSSearchPathDirectory;
declare type UIColor = any;
declare type PHAsset = any;
declare namespace android {
export namespace content {
export type Context = any;
export var Context: any;
}
export namespace view {
export type MotionEvent = any;
export var MotionEvent: any;
}
export namespace util {
export var Base64: any;
export var Log: any;
}
export namespace graphics.Bitmap.CompressFormat {
export var PNG: any;
export var android: any;
}
}
declare namespace org.nativescript.widgets {
export var ViewHelper: any;
}
declare namespace org.nativescript.widgets.Async.Http {
export type RequestResult = any;
export var RequestResult: any;
}
declare type java = any;
declare var java: any;