export interface Detector {
    readonly name: string;
    update(): void;
}
