UNPKG

spws

Version:

SharePoint Web Services Wrapper

21 lines (18 loc) 375 B
/** * The default Response */ type SpwsResponse = { responseText: string; responseXML: Document; status: number; statusText: string; envelope?: string; }; export type SpwsBatchResponse = { responseText: string[]; responseXML: Document[]; status: number[]; statusText: string[]; envelope?: string[]; }; export default SpwsResponse;