UNPKG

@sectester/scan

Version:

The package defines a simple public API to manage scans and their expectations.

8 lines (7 loc) 277 B
import { ScanException } from './ScanException'; import { ScanExceptionCode } from './ScanExceptionCode'; import { ScanStatus } from '../models'; export declare class ScanAborted extends ScanException { get type(): ScanExceptionCode; constructor(status: ScanStatus); }