tapbundle/dist_ts/tapbundle.classes.pretask.d.ts

11 lines
338 B
TypeScript
Raw Permalink Normal View History

2020-07-08 00:15:44 +00:00
import { TapTools } from './tapbundle.classes.taptools';
export interface IPreTaskFunction {
(tapTools?: TapTools): Promise<any>;
}
export declare class PreTask {
description: string;
preTaskFunction: IPreTaskFunction;
constructor(descriptionArg: string, preTaskFunctionArg: IPreTaskFunction);
run(): Promise<void>;
}