cloudkit-js
Version:
A JS library for managing a CloudKit container
9 lines (8 loc) • 339 B
TypeScript
import { ISignService } from "./types";
export declare class RequestService {
protected readonly signService: ISignService;
protected readonly hostname = "api.apple-cloudkit.com";
protected readonly port = 443;
constructor(signService: ISignService);
makeRequest<T>(requestPath: string, payload: string): Promise<T>;
}