UNPKG

@solid/community-server

Version:

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

16 lines (15 loc) 265 B
/** * Credentials identifying an entity accessing or owning data. */ export type Credentials = { agent?: { webId: string; }; client?: { clientId: string; }; issuer?: { url: string; }; [key: string]: unknown; };