tapbundle/dist_ts/tapbundle.classes.pretask.d.ts
2020-07-08 00:15:44 +00:00

11 lines
338 B
TypeScript

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>;
}