Files
vat-api.eu/node_modules/unhead/dist/client.d.ts
2026-02-13 22:02:30 +01:00

14 lines
603 B
TypeScript

import { R as ResolvableHead, r as CreateClientHeadOptions, U as Unhead, I as RenderDomHeadOptions } from './shared/unhead.BUCuVRIf.js';
import 'hookable';
declare function createHead<T = ResolvableHead>(options?: CreateClientHeadOptions): Unhead<T>;
/**
* Render the head tags to the DOM.
*/
declare function renderDOMHead<T extends Unhead<any>>(head: T, options?: RenderDomHeadOptions): Promise<void>;
declare function createDebouncedFn(callee: () => void, delayer: (fn: () => void) => void): () => void;
export { CreateClientHeadOptions, Unhead, createDebouncedFn, createHead, renderDOMHead };