rush-archive-project-plugin
Version:
Rush plugin to archive project
15 lines • 496 B
TypeScript
import { JsonObject } from "@rushstack/node-core-library";
export declare class ProjectMetadata {
private _projectConfig;
static FILENAME: string;
constructor(projectConfig: JsonObject);
static load(filePath: string): ProjectMetadata;
save(filePath: string): void;
get projectConfig(): JsonObject;
}
export interface IProjectCheckpointMetadata {
checkpointBranch: string;
archivedOn: string;
description: string;
}
//# sourceMappingURL=projectMetadata.d.ts.map