UNPKG

@vector-im/matrix-bot-sdk

Version:

TypeScript/JavaScript SDK for Matrix bots and appservices

26 lines (25 loc) 543 B
/** * Information about the policies (terms of service) a server may have. * @category Models */ export interface Policies { policies: { [id: string]: Policy; }; } /** * Information about a policy (terms of service) a server may have. * @category Models */ export interface Policy { version: string; [language: string]: TranslatedPolicy | string; } /** * Information about a (translated) policy (terms of service). * @category Models */ export interface TranslatedPolicy { name: string; url: string; }