UNPKG

spws

Version:

SharePoint Web Services Wrapper

16 lines (15 loc) 479 B
import { Item } from "../../types"; import { GetListItemsOptions } from "./getListItems"; interface Operation { data: Item[]; responseText: string[]; responseXML: Document[]; status: number[]; statusText: string[]; envelope?: string[]; } interface GetItemsOptions extends GetListItemsOptions<any> { listName: string; } declare const getMultiListItems: (lists: GetItemsOptions[]) => Promise<Operation>; export default getMultiListItems;