testplane
Version:
Tests framework based on mocha and wdio
8 lines (7 loc) • 315 B
TypeScript
import type * as TypeScript from "typescript";
type TypeScriptModule = typeof TypeScript;
interface InstrumentationOptions {
beforeTest: boolean;
}
export declare const instrumentWithTypeScript: (ts: TypeScriptModule, code: string, sourceFileName: string, options: InstrumentationOptions) => string;
export {};