UNPKG

gulp-path-alias

Version:
13 lines (12 loc) 271 B
/// <reference types="node" /> declare type AliasMapType = Record<string, string>; declare type Options = { cwd?: string; paths?: AliasMapType; }; /** * * @param options */ declare function alias(options?: Options): import("stream").Transform; export = alias;