Type definitions for the `@aws-lite/cloudformation` plugin
npm install @aws-lite/cloudformation-typesAdd to devDependencies in package.json:
```
npm i -D @aws-lite/cloudformation-types
Be sure you also have @aws-lite/cloudformation installed.
In a Javascript project, the ambient types will be automatically loaded.
#### Add this package to compilerOptions.types
Example:
`json`
{
"extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": {
"types": [
"@aws-lite/cloudformation-types"
]
}
}
#### Or use reference types
Either in individual files or in an index.d.ts file.
`ts`
///
ymmv
`ts``
///