mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-14 12:09:04 +08:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
14 lines
601 B
TypeScript
14 lines
601 B
TypeScript
// Type definitions for artillery 1.6
|
|
// Project: https://github.com/shoreditch-ops/artillery#readme
|
|
// 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;
|