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