@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
13 lines (12 loc) • 364 B
TypeScript
export = Duplex;
declare function Duplex(options: any): Duplex;
declare class Duplex {
constructor(options: any);
readable: boolean | undefined;
writable: boolean | undefined;
allowHalfOpen: boolean | undefined;
get writableHighWaterMark(): any;
set destroyed(value: any);
get destroyed(): any;
_destroy(err: any, cb: any): void;
}