@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
104 lines (103 loc) • 2.63 kB
TypeScript
import { DefinitionOptions } from '../jxt';
export interface Stream {
}
export interface StreamFeatures {
}
export interface StreamError {
}
export interface StanzaError {
}
export interface Message {
}
export interface Presence {
}
export interface IQBase {
}
export interface IQPayload {
}
export interface IQ extends IQBase, IQPayload {
}
export interface AtomEntry {
}
export * from './rfc3921';
export * from './rfc4287';
export * from './rfc6120';
export * from './rfc6121';
export * from './rfc7395';
export * from './xep0004';
export * from './xep0012';
export * from './xep0016';
export * from './xep0030';
export * from './xep0033';
export * from './xep0045';
export * from './xep0047';
export * from './xep0048';
export * from './xep0049';
export * from './xep0050';
export * from './xep0054';
export * from './xep0055';
export * from './xep0059';
export * from './xep0060';
export * from './xep0065';
export * from './xep0066';
export * from './xep0071';
export * from './xep0077';
export * from './xep0080';
export * from './xep0084';
export * from './xep0085';
export * from './xep0092';
export * from './xep0107';
export * from './xep0108';
export * from './xep0114';
export * from './xep0115';
export * from './xep0118';
export * from './xep0141';
export * from './xep0131';
export * from './xep0138';
export * from './xep0144';
export * from './xep0153';
export * from './xep0158';
export * from './xep0166';
export * from './xep0167';
export * from './xep0172';
export * from './xep0176';
export * from './xep0177';
export * from './xep0184';
export * from './xep0186';
export * from './xep0191';
export * from './xep0198';
export * from './xep0199';
export * from './xep0202';
export * from './xep0203';
export * from './xep0215';
export * from './xep0221';
export * from './xep0224';
export * from './xep0231';
export * from './xep0234';
export * from './xep0247';
export * from './xep0260';
export * from './xep0261';
export * from './xep0264';
export * from './xep0280';
export * from './xep0297';
export * from './xep0300';
export * from './xep0301';
export * from './xep0308';
export * from './xep0313';
export * from './xep0317';
export * from './xep0319';
export * from './xep0320';
export * from './xep0333';
export * from './xep0334';
export * from './xep0335';
export * from './xep0338';
export * from './xep0343';
export * from './xep0352';
export * from './xep0357';
export * from './xep0359';
export * from './xep0363';
export * from './xep0380';
export * from './xep0384';
export * from './xrd';
declare const Protocol: Array<DefinitionOptions | DefinitionOptions[]>;
export default Protocol;