tsme-metering
Version:
A useful lib and CLI to collect water meter data from your TSME group provider account
14 lines (10 loc) • 303 B
text/typescript
import BaseProviderClient from "./base.js";
import SuezClient from "./suez.js";
type ProviderConstructor = new (
email?: string,
password?: string
) => BaseProviderClient;
const providers: Map<string, ProviderConstructor> = new Map([
["suez", SuezClient],
]);
export { providers, SuezClient };