mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 22:23:13 +00:00
6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
|
// Allow importing of json files with typescript
|
||
|
declare module "*.json" {
|
||
|
const value: { [key: string]: any};
|
||
|
export default value;
|
||
|
}
|