spws
Version:
SharePoint Web Services Wrapper
10 lines (9 loc) • 339 B
TypeScript
import { Methods, Operation } from ".";
declare const sendBatchRequest: ({ listName, methods, onError, webURL, allowLongFieldNames, }: {
listName: string;
methods: Methods;
onError: "Continue" | "Return";
webURL: string;
allowLongFieldNames: boolean;
}) => Promise<Operation>;
export default sendBatchRequest;