mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-25 14:01:13 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
![]() |
import ScanResultEntry from "~/models/scan-result-entry";
|
||
|
|
||
|
export default interface ScanResult {
|
||
|
readonly id: string,
|
||
|
readonly results: { [id: string]: ScanResultEntry; }
|
||
|
}
|