burdy
Version:
Open Source Headless Platform
18 lines (17 loc) • 518 B
TypeScript
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 {};