17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
declare module '*.svg' {
|
|
const content: any
|
|
export default content
|
|
}
|
|
|
|
namespace NodeJS {
|
|
export interface Process {
|
|
env: {
|
|
VALIDATOR_ADDRESS: string
|
|
MNEMONIC: string
|
|
TESTNET_URL_1: string
|
|
TESTNET_URL_2: string
|
|
ACCOUNT_ADDRESS: string
|
|
}
|
|
}
|
|
}
|