Skip to content

Commit

Permalink
Make o property optional on font glyphs (#934)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored May 3, 2024
1 parent da1f9f4 commit 008ee6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/three/examples/jsm/loaders/FontLoader.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Loader, LoadingManager, Shape } from "three";

export interface FontData {
glyphs: Record<string, { ha: number; x_min: number; x_max: number; o: string }>;
glyphs: Record<string, { ha: number; x_min: number; x_max: number; o?: string | undefined }>;
familyName: string;
ascender: number;
descender: number;
Expand Down

0 comments on commit 008ee6e

Please sign in to comment.