UNPKG

blog-editor-cms

Version:

A comprehensive blog editor CMS package with JSON-server backend

12 lines (11 loc) 420 B
import { BlogPackageOptions } from "../shared/types"; /** * Initialize the blog package with optional server configuration * @param options Configuration options for the package * @throws {Error} If server fails to start */ export declare function initializeBlogPackage(options?: BlogPackageOptions): Promise<void>; /** * Stop the blog server if running */ export declare function stopBlogServer(): Promise<void>;