mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
27 lines
736 B
Markdown
27 lines
736 B
Markdown
This plugin contains type information about the native platforms as exposed by the NativeScript framework.
|
|
|
|
Offically supported entry points:
|
|
- `android.d.ts` - For android SDK and runtime types.
|
|
- `ios.d.ts` - For iOS SDK and runtime types.
|
|
|
|
Using the declarations may conflict with DOM typings,
|
|
Consider the following settings in your `tsconfig.json`:
|
|
```
|
|
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es2016"
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
And add to the reference.d.ts:
|
|
```
|
|
/// <reference path="./node_modules/tns-platform-declarations/ios.d.ts" />
|
|
/// <reference path="./node_modules/tns-platform-declarations/android.d.ts" />
|
|
```
|