@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
11 lines (10 loc) • 446 B
text/typescript
import { Config, TenantConfig } from "../../types/config.mjs";
//#region src/utils/media/media-key-tenant.d.ts
/**
* Resolves the adapter tenant encoded in a media key.
* CDN and signed storage routes use this because they do not receive tenant headers.
*/
declare const resolveMediaKeyTenant: (config: Config, key: string) => TenantConfig | null;
//#endregion
export { resolveMediaKeyTenant };
//# sourceMappingURL=media-key-tenant.d.mts.map