/*! * @ganache/ethereum * * @author David Murdoch (https://davidmurdoch.com) * @license MIT */ import { EthereumOptionsConfig } from "@ganache/ethereum-options"; import type { Flavor } from "@ganache/flavor"; import { CliOptionsConfig, ServerOptionsConfig } from "@ganache/flavor"; import { Connector } from "./src/connector"; export * from "./src/connector"; export * from "./src/api-types"; type EthereumFlavor = Flavor<"ethereum", Connector, { provider: EthereumOptionsConfig; server: ServerOptionsConfig; cli: CliOptionsConfig; }>; declare const EthereumFlavor: EthereumFlavor; export default EthereumFlavor; //# sourceMappingURL=index.d.ts.map