tsme-metering
Version:
A useful lib and CLI to collect water meter data from your TSME group provider account
6 lines • 298 B
TypeScript
import BaseProviderClient from "./base.js";
import SuezClient from "./suez.js";
type ProviderConstructor = new (email?: string, password?: string) => BaseProviderClient;
declare const providers: Map<string, ProviderConstructor>;
export { providers, SuezClient };
//# sourceMappingURL=index.d.ts.map