UNPKG

@lucidcms/core

Version:

The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.

11 lines 468 B
//#region src/libs/permission/client-scopes.d.ts declare const ClientScopes: { readonly MediaRead: "media:read"; readonly MediaProcess: "media:process"; readonly LocalesRead: "locales:read"; }; type CollectionClientScope = `documents:${string}:read`; type ClientScope = (typeof ClientScopes)[keyof typeof ClientScopes] | CollectionClientScope; //#endregion export { ClientScope, ClientScopes, CollectionClientScope }; //# sourceMappingURL=client-scopes.d.mts.map