UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

16 lines (13 loc) 273 B
import type {AlphaImage} from '../util/image'; export type GlyphMetrics = { width: number; height: number; left: number; top: number; advance: number; }; export type StyleGlyph = { id: number; bitmap: AlphaImage; metrics: GlyphMetrics; };