@holographxyz/environment
Version:
Holograph Protocol
11 lines • 379 B
TypeScript
declare enum Environment {
localhost = "localhost",
experimental = "experimental",
develop = "develop",
testnet = "testnet",
mainnet = "mainnet"
}
declare const getEnvironment: () => Environment;
declare const setEnvironment: (env?: Environment) => Environment;
export { Environment, getEnvironment, setEnvironment };
//# sourceMappingURL=environment.d.ts.map