File size: 257 Bytes
20dbb3c | 1 2 3 4 5 6 7 8 9 | import type {CharacterMetricsTuple, FontName} from "./types/fonts";
type FontMetrics = Record<number, CharacterMetricsTuple>;
declare const fontMetricsData: Record<FontName, FontMetrics> &
Record<string, FontMetrics>;
export default fontMetricsData;
|