Initial commit

This commit is contained in:
Alejandro Martinez
2026-02-12 02:04:10 +01:00
commit f09af719cf
13433 changed files with 2193445 additions and 0 deletions

20
node_modules/@capsizecss/unpack/dist/fs.d.mts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import { n as Options } from "./shared-CnZ3qQtb.mjs";
//#region src/fs.d.ts
declare const fromFile: (path: string, options?: Options) => Promise<{
familyName: string;
fullName: string;
postscriptName: string;
capHeight: number;
ascent: number;
descent: number;
lineGap: number;
unitsPerEm: number;
xHeight: number;
xWidthAvg: number;
subsets: Record<"latin" | "thai", {
xWidthAvg: number;
}>;
}>;
//#endregion
export { fromFile };