Files
pezkuwi-ui/packages/ui-keyring/src/json.d.ts
T
Jaco Greeff f003063b94 2021 (#424)
2021-01-03 11:46:19 +01:00

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;
}