@rr0/cms
Version:
RR0 Content Management System (CMS)
12 lines (11 loc) • 416 B
TypeScript
import { SsgContext, SsgStep } from "ssg-api";
import { SourceRegistry } from "./SourceRegistry.js";
/**
* Saves the index file collected by the SourceCommand.
*/
export declare class SourceIndexStep implements SsgStep {
protected fileName: string;
protected sourceCommand: SourceRegistry;
constructor(fileName: string, sourceCommand: SourceRegistry);
execute(context: SsgContext): Promise<any>;
}