import { DataSDK, GraphQLRequest, GraphQLResponse } from '@salesforce/sdk-core'; import { WebAppDataSDKOptions } from '../index'; /** * Data SDK implementation for web apps, which is based on making `fetch` calls to REST endpoints */ export declare class WebAppDataSDK implements DataSDK { private readonly baseUrl; private readonly clientFetch; private readonly onStatus; constructor(options?: WebAppDataSDKOptions); graphql({ query, variables, operationName, }: GraphQLRequest): Promise>; fetch(input: string | URL | Request, init?: RequestInit): Promise; /** * If the url is relative, convert to it to an absolute Salesforce URL. This is due to the way Code * Builder deployments structure the url for Salesforce */ private applySalesforceBase; } //# sourceMappingURL=index.d.ts.map