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 { export interface SourceCode {
filename: string; filename?: string;
content: string; content?: string;
language: string; files?: string[];
files: string[];
saved: boolean;
command: string; command: string;
} }