Refresh SourceCode class

This commit is contained in:
Kristóf Tóth 2018-03-09 09:36:14 +01:00
parent 10cf9907d2
commit 134141b495

View File

@ -1,6 +1,7 @@
export interface SourceCode {
filename?: string;
filename: string;
content?: string;
files?: string[];
files: string[];
directory: string;
command: string;
}