Files
nym/testnet-faucet/src/types.d.ts
T
2021-11-19 22:46:32 +00:00

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