@nikolarhristov/pipeline
Version:
🧪 Pipeline for files.
13 lines (12 loc) • 555 B
TypeScript
import type { Pattern } from "fast-glob";
import type { executions, optionCallbacksPipe, optionPath, Options } from "../options/index.js";
export default class {
pipeline: (callbacks?: executions) => Promise<default>;
not: (pattern: Options["exclude"]) => Promise<default>;
by: (glob?: Pattern | Pattern[]) => Promise<default>;
in: (path?: optionPath) => Promise<default>;
pipe: optionCallbacksPipe;
paths: Map<string, string>;
results: Map<string, string>;
constructor(debug?: optionCallbacksPipe["debug"]);
}