This commit is contained in:
Jaco Greeff
2020-12-18 11:50:32 +01:00
parent 3746b608b2
commit f9428ee6d2
16 changed files with 163 additions and 153 deletions
+11
View File
@@ -0,0 +1,11 @@
// Copyright 2017-2020 @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;
}