From 134141b49572cab1c415639179594a04b525d791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Fri, 9 Mar 2018 09:36:14 +0100 Subject: [PATCH] Refresh SourceCode class --- src/app/webide/source-code.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/webide/source-code.ts b/src/app/webide/source-code.ts index 2b49091..ab0b524 100644 --- a/src/app/webide/source-code.ts +++ b/src/app/webide/source-code.ts @@ -1,6 +1,7 @@ export interface SourceCode { - filename?: string; + filename: string; content?: string; - files?: string[]; + files: string[]; + directory: string; command: string; }