feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

16
node_modules/unhead/dist/legacy.d.mts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import { createUnhead } from './index.mjs';
export { useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta } from './index.mjs';
import { U as Unhead, R as ResolvableHead, C as CreateHeadOptions } from './shared/unhead.BUCuVRIf.mjs';
export { u as useScript } from './shared/unhead.CC7bAF1a.mjs';
import './shared/unhead.CBPtX666.mjs';
import 'hookable';
declare const activeHead: {
value: Unhead<any> | null;
};
declare function getActiveHead(): Unhead<any> | null;
declare function createServerHead<T extends Record<string, any> = ResolvableHead>(options?: CreateHeadOptions): Unhead<T>;
declare function createHead<T extends Record<string, any> = ResolvableHead>(options?: CreateHeadOptions): Unhead<T>;
declare const createHeadCore: typeof createUnhead;
export { activeHead, createHead, createHeadCore, createServerHead, createUnhead, getActiveHead };