Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arduinominas/nativescript-ios-declarations

Declarations for iOS
https://github.com/arduinominas/nativescript-ios-declarations

declartions ios nativescript typings

Last synced: about 2 months ago
JSON representation

Declarations for iOS

Awesome Lists containing this project

README

        

This plugin contains type information about the native platforms as exposed by the NativeScript framework.

Offically supported entry points:
- `ios.d.ts` - For iOS SDK and runtime types.

Using the declarations may conflict with DOM typings,
consider using TypeScript 2.x.x and the following settings in your `tsconfig.json`:
```
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"experimentalDecorators": true,
"lib": [
"es6",
"dom"
]
}
}
```

Create `reference.d.ts`and add the following content:
```
///
```

d.ts files require a lot of memory and CPU. Consider adding skipLibCheck option to tsconfig file.