UNPKG

converse.js

Version:
28 lines (24 loc) 501 B
export type Credentials = { jid: string; password: string; }; export type ProcessStringOptions = { start?: RegExp; end?: RegExp; trim?: RegExp; parens?: RegExp; ignoreHtml?: boolean; ignore?: RegExp; }; export type MediaURLIndexes = { url: string; end: number; start: number; } export type MediaURLMetadata = MediaURLIndexes & { is_audio?: boolean; is_encrypted?: boolean; is_gif?: boolean; is_image?: boolean; is_video?: boolean; };