gersemi
Version:
18 lines (17 loc) • 495 B
TypeScript
import * as XML from './XML';
export declare class Element extends XML.Element {
constructor(name: string, ...namespaces: string[]);
}
export declare class Header extends Element {
action: string;
to: string;
actionElement: XML.Element;
constructor(action: string, to: string);
}
export declare class Request extends Element {
action: string;
to: string;
header: Element;
body: Element;
constructor(action: string, to: string, ...namespaces: string[]);
}