UNPKG

@roots/bud-api

Version:

bud.js core module

8 lines (7 loc) 253 B
import type { Bud } from '@roots/bud-framework'; export type Value = ((hash?: boolean) => boolean | string) | boolean | Bud | string; export type Parameters = [Value?]; export interface hash { (value: Value): Bud; } export declare const hash: hash;