DefinitelyTyped/types/artillery/index.d.ts
Nathan Shively-Sanders 9ef3f65ace More cleanup
2019-02-11 17:34:36 -08:00

14 lines
591 B
TypeScript

// Type definitions for artillery 1.6
// Project: https://github.com/artilleryio/artillery
// Definitions by: Kira McCoan <https://github.com/kmccoan-allocadia>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import * as request from 'request';
import * as events from 'events';
export interface ScenarioContext { vars: {[key: string]: any}; }
export type Next = (err?: Error) => void;
export type ResponseRequest = request.ResponseRequest;
export type RequestResponse = request.RequestResponse;
export type EventEmitter = events.EventEmitter;