Make SourceCode interface represent reality

This commit is contained in:
Bálint Bokros 2018-02-16 17:32:29 +01:00
parent 95d616225f
commit 4faffe1f79

View File

@ -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;
}