/** * newman runner */ import { TestCase } from "../fastman"; import { Promise } from "es6-promise"; export default class NewmanRunner { /** * 跑测试 */ run(testCase: TestCase, collectionName?: string): Promise; }