mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-19 19:28:59 +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;
|
|
}
|