mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +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; }
|
|
}
|