mirror of
				https://github.com/avatao-content/frontend-tutorial-framework
				synced 2025-11-04 06:22:56 +00:00 
			
		
		
		
	Make SourceCode interface represent reality
This commit is contained in:
		@@ -1,8 +1,6 @@
 | 
			
		||||
export class SourceCode {
 | 
			
		||||
  filename: string;
 | 
			
		||||
  content: string;
 | 
			
		||||
  language: string;
 | 
			
		||||
  files: string[];
 | 
			
		||||
  saved: boolean;
 | 
			
		||||
export interface SourceCode {
 | 
			
		||||
  filename?: string;
 | 
			
		||||
  content?: string;
 | 
			
		||||
  files?: string[];
 | 
			
		||||
  command: string;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user