UNPKG

@elora-cloud/elora-cli

Version:
11 lines (8 loc) 279 B
import { TaskFunction } from 'gulp'; declare const withTaskName: <T extends TaskFunction>(name: string, fn: T) => T & { displayName: string; }; declare const runTask: (name: string) => (() => Promise<void>) & { displayName: string; }; export { runTask, withTaskName };