polen
Version:
A framework for delightful GraphQL developer portals
14 lines • 414 B
TypeScript
export type RebasePlan = RebaseOverwritePlan | RebaseCopyPlan;
export interface RebaseOverwritePlan {
changeMode: `mutate`;
newBasePath: string;
sourcePath: string;
}
export interface RebaseCopyPlan {
changeMode: `copy`;
newBasePath: string;
sourcePath: string;
targetPath: string;
}
export declare const rebase: (plan: RebasePlan) => Promise<void>;
//# sourceMappingURL=rebase.d.ts.map