UNPKG

burdy

Version:

Open Source Headless Platform

18 lines (17 loc) 518 B
import { IUser } from '@shared/interfaces/model'; interface IExportContentParams { output?: string; force?: boolean; include?: string[]; } export declare const exportContent: ({ output, force, include, }?: IExportContentParams) => Promise<void>; export declare const importContent: ({ user, options, file, include, }: { user?: IUser; file?: string; options?: { force?: string | boolean; publish?: string | boolean; }; include?: string[]; }) => Promise<void>; export {};