2018-03-09 09:36:14 +01:00

8 lines
131 B
TypeScript

export interface SourceCode {
filename: string;
content?: string;
files: string[];
directory: string;
command: string;
}