UNPKG

@toggle.tiger/toggletiger

Version:

A package to retrieve configuration from blobstore based on org, app, env, and config ID.

10 lines 480 B
import type { PublishedConfigModel } from "../types"; export declare const fetchConfigDetails: (organizationId: string, teamId: string, applicationId: string, configId: string, environmentId: string) => Promise<{ locationUri: string; }>; export declare const fetchConfigBlobWithCaching: (locationUri: string, etag?: string) => Promise<{ response: PublishedConfigModel | null; etag: string | null; notModified: boolean; }>; //# sourceMappingURL=fetchConfig.d.ts.map