UNPKG

@vector-im/matrix-bot-sdk

Version:

TypeScript/JavaScript SDK for Matrix bots and appservices

9 lines (8 loc) 165 B
/** * A Third Party Identifier (3PID or threepid) * @category Models */ export interface Threepid { kind: "email" | "msisdn" | string; address: string; }