mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
// Type definitions for gulp-cache v0.4.5
|
|
// Project: https://github.com/jgable/gulp-cache
|
|
// Definitions by: Arun Aravind <https://github.com/aravindarun>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import File = require("vinyl");
|
|
import { Transform } from "stream";
|
|
import { PluginError } from "gulp-util";
|
|
|
|
declare namespace gc {
|
|
type Predicate<T> = (arg: T) => boolean;
|
|
|
|
interface IGulpCacheOptions {
|
|
/**
|
|
* The cache instance to use for caching.
|
|
*/
|
|
fileCache?: IGulpCache;
|
|
|
|
/**
|
|
* The name of the bucket which stores the cached objects.
|
|
* Default value = 'default'
|
|
*/
|
|
name?: string,
|
|
|
|
/**
|
|
* The hash generator to use.
|
|
*/
|
|
key?: (file: File, callback?: (err: any, result: string) => void) => string | Promise<string>;
|
|
|
|
/**
|
|
* Value representing the success of a task.
|
|
*/
|
|
success?: boolean | Predicate<any>;
|
|
|
|
/**
|
|
* Content that is to be cached.
|
|
*/
|
|
value?: (result: any) => Object | Promise<Object> | string;
|
|
}
|
|
|
|
interface ICacheOptions {
|
|
/**
|
|
* Specifies the name of the directory where the cache
|
|
* is to be stored.
|
|
*/
|
|
cacheDirName: string;
|
|
}
|
|
|
|
interface IGulpCacheStatic {
|
|
/**
|
|
* Caches the result of a task.
|
|
* @param task The task whose result is to be cached.
|
|
*/
|
|
(task: NodeJS.ReadWriteStream): Transform;
|
|
|
|
/**
|
|
* Caches the result of a task.
|
|
* @param task Task whose result is to be cached.
|
|
* @param options Override values for available settings.
|
|
*/
|
|
(task: NodeJS.ReadWriteStream, options: IGulpCacheOptions): Transform;
|
|
|
|
clear(options: IGulpCacheOptions): Transform;
|
|
|
|
/**
|
|
* Represents a cache store.
|
|
*/
|
|
Cache: IGulpCache;
|
|
|
|
/**
|
|
* Purges the cache.
|
|
* @param err PluginError instance in case of a plugin error.
|
|
* If callback is not specified an exception of type
|
|
* 'PluginError' is thrown.
|
|
*/
|
|
clearAll(callback?: (err: PluginError) => void): void;
|
|
}
|
|
|
|
/**
|
|
* Represents a cach store.
|
|
*/
|
|
interface IGulpCache {
|
|
new (options: ICacheOptions): any;
|
|
}
|
|
}
|
|
|
|
declare const _: gc.IGulpCacheStatic;
|
|
export = _;
|