Type Alias: FontSrcEntry
type FontSrcEntry = Readonly<{
hasFormatHint: boolean;
isDataUri: boolean;
isLocal: boolean;
isUrl: boolean;
normalizedFormat: string | undefined;
normalizedUrl: string | undefined;
raw: string;
url: string | undefined;
}>;
Defined in: _internal/font-analysis.ts:26
Parsed src list item from one @font-face src declaration.