index.d.ts 196 B

1234
  1. import { TestConfig } from './types';
  2. import { TestOutput } from './scan/results';
  3. export { TestConfig } from './types';
  4. export declare function test(testConfig: TestConfig): Promise<TestOutput>;