@roots/bud-api
Version:
bud.js core module
10 lines (9 loc) • 374 B
TypeScript
import type { Bud } from '@roots/bud-framework';
export type Parameters<K extends Array<string> | string = Array<string> | string> = [
K | Record<string, Array<string> | string>,
(K extends Array<string> | string ? Array<string> | string : never)?
];
export interface provide {
(...parameters: Parameters): Promise<Bud>;
}
export declare const provide: provide;