@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
14 lines • 513 B
text/typescript
import { Config } from "../../types/config.mjs";
import { ServiceResponse } from "../../utils/services/types.mjs";
//#region src/libs/compile/prepare-lucid-public-assets.d.ts
declare const prepareLucidPublicAssets: (props: {
config: Config;
outDir: string;
projectRoot?: string;
includeProjectPublic?: boolean;
silent?: boolean;
verbose?: boolean;
}) => ServiceResponse<undefined>;
//#endregion
export { prepareLucidPublicAssets as default };
//# sourceMappingURL=prepare-lucid-public-assets.d.mts.map