refactor(font): move Metrics out of face

in preparation to move ownership of metrics from faces to collections
This commit is contained in:
Qwerasd
2025-01-06 17:39:53 -05:00
parent 037de64ea2
commit 540fcc0b69
12 changed files with 24 additions and 24 deletions

View File

@@ -20,7 +20,7 @@ const Collection = font.Collection;
const Discover = font.Discover;
const Style = font.Style;
const Library = font.Library;
const Metrics = font.face.Metrics;
const Metrics = font.Metrics;
const CodepointMap = font.CodepointMap;
const DesiredSize = font.face.DesiredSize;
const Face = font.Face;