mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-25 08:21:07 +00:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
// Allow importing of json files with typescript
|
|
declare module '*.json' {
|
|
const value: { [key: string]: any };
|
|
export default value;
|
|
}
|