mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
c5acb2f66d
Change-type: patch Signed-off-by: Cameron Diver <cameron@resin.io>
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;
|
|
}
|