UNPKG

@lucidcms/core

Version:

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

16 lines 686 B
//#region src/libs/compile/config-artifacts.d.ts declare const configArtifactEntries: { readonly config: "lucid/config"; readonly env: "lucid/env"; readonly db: "lucid/db"; readonly runtime: "lucid/runtime"; }; type ConfigArtifactKey = keyof typeof configArtifactEntries; type PreparedConfigArtifacts = Record<ConfigArtifactKey, string>; /** * Returns import paths for the generated split config modules. */ declare const getConfigArtifactImportPaths: (prefix?: string) => Record<ConfigArtifactKey, string>; //#endregion export { ConfigArtifactKey, PreparedConfigArtifacts, configArtifactEntries, getConfigArtifactImportPaths }; //# sourceMappingURL=config-artifacts.d.mts.map