UNPKG

@0xpolygonid/js-sdk

Version:
11 lines (10 loc) 287 B
/** * Represents information about a credential schema. * * @property {string} type - The type of the credential schema. * @property {string} context - The context in which the credential schema is used. */ export type CredentialSchemaInfo = { type: string; context: string; };