mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-27 12:48:02 +00:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
// Copyright 2017-2021 @polkadot/util authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Be able to import json in TS
|
|
// https://stackoverflow.com/questions/49996456/importing-json-file-in-typescript
|
|
declare module '*.json' {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const value: any;
|
|
|
|
export default value;
|
|
}
|