UNPKG

turbo-gulp

Version:

Gulp tasks to boost high-quality projects.

11 lines (10 loc) 407 B
/// <reference types="gulp" /> import { Gulp } from "gulp"; import { AbsPosixPath } from "../types"; import { TaskFunction } from "../utils/gulp-task-function"; import { TypescriptConfig } from "./_typescript"; export interface TypedocOptions { dir: AbsPosixPath; name: string; } export declare function getTypedocTask(gulp: Gulp, tsConfig: TypescriptConfig, options: TypedocOptions): TaskFunction;