This project aims to provide the PokiSDK types as a NPM module. Check out the PokiSDK documentation.
Pull-requests are welcome!
Install the module as a development dependency:
npm install --save-dev poki-sdk-types
- Open your project's
tsconfig.json
file. - Locate or add the
compilerOptions
object. - Add a
types
array (if not already present) and addpoki-sdk-types
to the list.
Example:
{
"compilerOptions": {
"types": ["poki-sdk-types"],
// Other compiler options...
}
}
MIT