UNPKG

@fairdatasociety/fairdrive-opfs

Version:

Fairdrive OPFS - integrate data sources from Web 2.0 or Web 3.0

13 lines (11 loc) 264 B
/** * ModuleConfig is the configuration object for the FdpConnectModule. */ export class ModuleConfig { providers: Record<string, ProviderConfig> = {} } export class ProviderConfig { options: Record<string, string | object> = {} driver: any type = '' }