import Builder from "./Builder"; import TargetContext from "./TargetContext"; export interface ITargetCallback { (ctx: TargetContext): Promise | void; } declare class ITarget { name: string; targetContext: TargetContext; private _fn; constructor(name: string, fn: ITargetCallback, builder: Builder); runTarget(): void; } export default ITarget;