gulp-*: Fix lint (#20836)

This commit is contained in:
Andy
2017-10-23 07:33:34 -07:00
committed by GitHub
parent c164250b98
commit 4f6bd16557
2 changed files with 1 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ declare namespace GulpMustache {
interface Options {
extension?: string;
tags?: ReadonlyArray<string> | undefined;
tags?: ReadonlyArray<string>;
}
}

View File

@@ -33,14 +33,12 @@ declare namespace GulpClient {
* Can be piped to and it will write files. Re-emits all data passed to it so you can pipe to multiple folders.
* Folders that don't exist will be created.
* @param path The path (output folder) to write files to. Or a function that returns it, the function will be provided a vinyl File instance.
* @param options
*/
dest: DestMethod;
/**
* Functions exactly like gulp.dest, but will create symlinks instead of copying a directory.
* @param folder A folder path or a function that receives in a file and returns a folder path.
* @param options
*/
symlink: typeof vfs.symlink;