Skip to content

@jimka/typescript-ui / component/display / NamedGlyphDef

Type Alias: NamedGlyphDef

ts
type NamedGlyphDef = GlyphDef & {
  name: string;
};

Defined in: src/typescript/lib/component/display/Glyphs.ts:23

A GlyphDef carrying its own registry name. Glyph modules generated from third-party icon sets export values of this shape so they can be registered in a single call to Glyph.register(...).

Type declaration

name

ts
name: string;