UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

23 lines (22 loc) 866 B
export interface HeadInstructionRenderState { hasRenderedHead: boolean; headInTree: boolean; partial: boolean; } /** * Policy for explicit `head` instructions. * * @example * A page with `<head>{Astro.head}</head>` renders once, then blocks repeats. */ export declare function shouldRenderHeadInstruction(state: HeadInstructionRenderState): boolean; /** * Policy for fallback `maybe-head` instructions. * * @example * A layout without `<head>` can inject styles with `maybe-head`, but only when * no explicit `<head>` exists in the rendered tree. */ export declare function shouldRenderMaybeHeadInstruction(state: HeadInstructionRenderState): boolean; /** Dispatches to the policy function for `head` or `maybe-head`. */ export declare function shouldRenderInstruction(type: 'head' | 'maybe-head', state: HeadInstructionRenderState): boolean;