Hhertz/node_modules/matrix-bot-sdk/lib/models/Threepid.d.ts
2025-07-31 23:47:20 +03:00

9 lines
165 B
TypeScript

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