@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
20 lines • 800 B
text/typescript
import { TranslationStore } from "../../i18n/types.mjs";
import { Config } from "../../../types/config.mjs";
import { LucidConfigDefinition, RuntimeBuildArtifact } from "../../runtime/types.mjs";
import { ServiceResponse } from "../../../utils/services/types.mjs";
//#region src/libs/plugins/hooks/handle-runtime.d.ts
/**
* Responsible for running the plugin runtime hooks and collecting artifacts.
*/
declare const handlePluginRuntimeHooks: (props: {
config: Config;
translationStore: TranslationStore;
definition: LucidConfigDefinition;
silent?: boolean;
configPath: string;
outputPath: string;
outputRelativeConfigPath: string;
}) => ServiceResponse<RuntimeBuildArtifact[]>;
//#endregion
export { handlePluginRuntimeHooks as default };
//# sourceMappingURL=handle-runtime.d.mts.map