UNPKG

cloudkit-js

Version:

A JS library for managing a CloudKit container

18 lines (17 loc) 625 B
import { Database, Environment, UrlBuilderInitParams } from "./types"; export declare class UrlBuilder { protected readonly versionNumber = 1; protected readonly containerName: string; protected readonly environment: Environment; protected readonly database: Database; constructor(initParams: UrlBuilderInitParams); protected getBasePath(): string; /** Records */ getModifyRecordsPath(): string; getQueryRecordsPath(): string; getLookupRecordsPath(): string; getResolveRecordsPath(): string; getShareAcceptPath(): string; /** Assets */ getUploadAssetsPath(): string; }