* refactor: extract help category map as JSON * refactor: extract block names as json * feat: add create-project script * fix: correct case for tsconfig target Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			252 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			252 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
type CreateStepOptions = {
 | 
						|
  projectPath: string;
 | 
						|
  stepNum: number;
 | 
						|
  challengeSeeds: Record<string, unknown>;
 | 
						|
  stepBetween: boolean;
 | 
						|
};
 | 
						|
 | 
						|
export declare function createStepFile(options: CreateStepOptions): string;
 | 
						|
 | 
						|
// TODO: the rest of the functions
 |