mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 04:22:41 +00:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
export interface SourceCode {
|
|
filename: string;
|
|
content?: string;
|
|
files: string[];
|
|
directory: string;
|
|
command: string;
|
|
}
|