UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

13 lines (12 loc) 374 B
import type Provider from 'oidc-provider'; /** * Returns a Provider of OIDC interactions. */ export interface ProviderFactory { /** * Gets a provider from the factory. * Multiple calls to this function should return providers that produce the same results. * This is mostly relevant for signing keys. */ getProvider: () => Promise<Provider>; }