mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-11 10:59:55 +08:00
gulp-*: Fix lint (#20836)
This commit is contained in:
2
types/gulp-mustache/index.d.ts
vendored
2
types/gulp-mustache/index.d.ts
vendored
@@ -16,7 +16,7 @@ declare namespace GulpMustache {
|
||||
|
||||
interface Options {
|
||||
extension?: string;
|
||||
tags?: ReadonlyArray<string> | undefined;
|
||||
tags?: ReadonlyArray<string>;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
2
types/gulp/index.d.ts
vendored
2
types/gulp/index.d.ts
vendored
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user