UNPKG

realm-object-server

Version:

Realm Object Server

16 lines (15 loc) 551 B
import { ServiceClientBase } from "./ServiceClientBase"; import { FindRealmResponse } from "../shared/FindRealmResponse"; import { RealmType } from "../realms/RealmType"; export declare class RealmDirectoryClient extends ServiceClientBase { protected serviceName: string; protected baseRoute: string; findByPath(params: { realmPath: string; shouldCreate: boolean; token?: string; realmType?: RealmType; ownerId?: string; }): Promise<FindRealmResponse>; delete(path: string): Promise<any>; }