Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/arduinominas/nativescript-ios-declarations
- Owner: ArduinoMinas
- Created: 2018-03-02T21:51:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-03T00:10:13.000Z (almost 7 years ago)
- Last Synced: 2024-12-14T08:29:59.214Z (about 2 months ago)
- Topics: declartions, ios, nativescript, typings
- Language: TypeScript
- Size: 2.65 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.