2021-06-08 21:27:45 +02:00
|
|
|
type CreateStepOptions = {
|
|
|
|
challengeSeeds: Record<string, unknown>;
|
2021-07-06 19:22:12 -05:00
|
|
|
projectPath: string;
|
2021-06-08 21:27:45 +02:00
|
|
|
stepBetween: boolean;
|
2021-07-06 19:22:12 -05:00
|
|
|
stepNum: number;
|
2021-06-08 21:27:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export declare function createStepFile(options: CreateStepOptions): string;
|
2021-07-06 19:22:12 -05:00
|
|
|
export declare function reorderSteps(): void;
|
|
|
|
export declare function getChallengeSeeds(string): Record<string, unknown>;
|