stanza-extend
Version:
Modern XMPP in the browser, with a JSON API
14 lines (13 loc) • 330 B
TypeScript
import { DefinitionOptions } from '../jxt';
export interface JingleDtlsFingerprint {
algorithm?: string;
setup?: string;
value?: string;
}
declare module './xep0176' {
interface JingleIce {
fingerprints?: JingleDtlsFingerprint[];
}
}
declare const Protocol: DefinitionOptions;
export default Protocol;