mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
591 B
TypeScript
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;
|