@roots/bud-api
Version:
bud.js core module
8 lines (7 loc) • 316 B
TypeScript
import type { Bud, Rules } from '@roots/bud-framework';
export type Source = Array<RegExp | string> | RegExp | string;
export type Parameters = [Source, Array<`${keyof Rules & string}`>?];
export interface compilePaths {
(this: Bud, ...value: Parameters): Bud;
}
export declare const compilePaths: compilePaths;