fsm-sdk
Version:
Node.JS sdk to interface with SAP Field Service Management APIs.
6 lines (5 loc) • 300 B
TypeScript
import { HttpRequestOptions, HttpResponse } from './core/http/error-response.model';
declare const fetch: (url: string, opt: HttpRequestOptions) => Promise<HttpResponse>;
declare const URLSearchParams: any;
declare function toBase64(str: string): string;
export { fetch, toBase64, URLSearchParams };