finished the first version of UI, refactoring and facelifts are pending

This commit is contained in:
Volodymyr Smirnov
2020-10-27 13:15:48 +02:00
parent e56f95e3a6
commit 61224d5cb5
11 changed files with 1554 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
import ScanResultEntry from "~/models/scan-result-entry";
export default interface ScanResult {
readonly id: string,
readonly results: { [id: string]: ScanResultEntry; }
}