56 lines
3.0 KiB
TypeScript
56 lines
3.0 KiB
TypeScript
import { z } from 'zod';
|
|
import type { FontProvider } from './types.js';
|
|
export declare const weightSchema: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
export declare const styleSchema: z.ZodEnum<["normal", "italic", "oblique"]>;
|
|
export declare const displaySchema: z.ZodEnum<["auto", "block", "swap", "fallback", "optional"]>;
|
|
export declare const fontProviderSchema: z.ZodType<FontProvider<never>, z.ZodTypeDef, FontProvider<never>>;
|
|
export declare const fontFamilySchema: z.ZodObject<{
|
|
provider: z.ZodType<FontProvider<never>, z.ZodTypeDef, FontProvider<never>>;
|
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
weights: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "atleastone">>;
|
|
styles: z.ZodOptional<z.ZodArray<z.ZodEnum<["normal", "italic", "oblique"]>, "atleastone">>;
|
|
subsets: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
|
formats: z.ZodOptional<z.ZodArray<z.ZodEnum<["woff2", "woff", "otf", "ttf", "eot"]>, "atleastone">>;
|
|
display: z.ZodOptional<z.ZodEnum<["auto", "block", "swap", "fallback", "optional"]>>;
|
|
stretch: z.ZodOptional<z.ZodString>;
|
|
featureSettings: z.ZodOptional<z.ZodString>;
|
|
variationSettings: z.ZodOptional<z.ZodString>;
|
|
unicodeRange: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
|
fallbacks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
optimizedFallbacks: z.ZodOptional<z.ZodBoolean>;
|
|
name: z.ZodString;
|
|
cssVariable: z.ZodString;
|
|
}, "strict", z.ZodTypeAny, {
|
|
name: string;
|
|
cssVariable: string;
|
|
provider: FontProvider<never>;
|
|
weights?: [string | number, ...(string | number)[]] | undefined;
|
|
styles?: ["normal" | "italic" | "oblique", ...("normal" | "italic" | "oblique")[]] | undefined;
|
|
subsets?: [string, ...string[]] | undefined;
|
|
fallbacks?: string[] | undefined;
|
|
optimizedFallbacks?: boolean | undefined;
|
|
formats?: ["woff2" | "woff" | "otf" | "ttf" | "eot", ...("woff2" | "woff" | "otf" | "ttf" | "eot")[]] | undefined;
|
|
display?: "auto" | "block" | "swap" | "fallback" | "optional" | undefined;
|
|
stretch?: string | undefined;
|
|
featureSettings?: string | undefined;
|
|
variationSettings?: string | undefined;
|
|
unicodeRange?: [string, ...string[]] | undefined;
|
|
options?: Record<string, any> | undefined;
|
|
}, {
|
|
name: string;
|
|
cssVariable: string;
|
|
provider: FontProvider<never>;
|
|
weights?: [string | number, ...(string | number)[]] | undefined;
|
|
styles?: ["normal" | "italic" | "oblique", ...("normal" | "italic" | "oblique")[]] | undefined;
|
|
subsets?: [string, ...string[]] | undefined;
|
|
fallbacks?: string[] | undefined;
|
|
optimizedFallbacks?: boolean | undefined;
|
|
formats?: ["woff2" | "woff" | "otf" | "ttf" | "eot", ...("woff2" | "woff" | "otf" | "ttf" | "eot")[]] | undefined;
|
|
display?: "auto" | "block" | "swap" | "fallback" | "optional" | undefined;
|
|
stretch?: string | undefined;
|
|
featureSettings?: string | undefined;
|
|
variationSettings?: string | undefined;
|
|
unicodeRange?: [string, ...string[]] | undefined;
|
|
options?: Record<string, any> | undefined;
|
|
}>;
|