UNPKG

@vector-im/matrix-bot-sdk

Version:

TypeScript/JavaScript SDK for Matrix bots and appservices

19 lines (17 loc) 440 B
/** * Information about a user on an identity server. * @category Models */ export interface IdentityServerAccount { user_id: string; } /** * A stored invite on an identity server. * @category Models */ export interface IdentityServerInvite { display_name: string; public_keys: { public_key: string, key_validity_url: string }[]; // server key then ephemeral key, length of 2 public_key: string; token: string; }