balena-supervisor/typings/typings.d.ts
Cameron Diver c5acb2f66d
Convert supervisor_version module to typescript, and add typings for json
Change-type: patch
Signed-off-by: Cameron Diver <cameron@resin.io>
2018-06-18 13:39:08 +01:00

6 lines
141 B
TypeScript

// Allow importing of json files with typescript
declare module "*.json" {
const value: { [key: string]: any};
export default value;
}