myst-cli
Version:
Command line tools for MyST
21 lines • 547 B
TypeScript
import type { ISession } from '../session/types.js';
export type CleanOptions = {
docx?: boolean;
pdf?: boolean;
tex?: boolean;
xml?: boolean;
md?: boolean;
meca?: boolean;
site?: boolean;
html?: boolean;
temp?: boolean;
logs?: boolean;
cache?: boolean;
exports?: boolean;
execute?: boolean;
templates?: boolean;
all?: boolean;
yes?: boolean;
};
export declare function clean(session: ISession, files: string[], opts: CleanOptions): Promise<void>;
//# sourceMappingURL=clean.d.ts.map