Glypht
  • Documentation
  • Discussions
  • GitHub
Navigation
  • Documentation
    • @glypht/bundler-utils
      • NodeType
      • CSSSpan
      • CSSOutput
      • FeatureMetadata
      • FamilyInfo
      • SubsetAxisSetting
      • ExportedFont
      • CharacterSetSettings
      • FamilySubsetSettings
      • FamilySettings
      • ExportFontsSettings
      • featureMetadata
      • sortFontsIntoFamilies
      • exportedFontsToCSS
      • exportFonts
      • parseUnicodeRanges
      • parseRanges
      • formatUnicodeRanges
    • @glypht/cli
      • GlyphtConfig
      • build
    • @glypht/core
      • AxisValueFormat
      • AxisValueFlags
      • WoffCompressionContext
      • GlyphtContext
      • CompressOptions
      • DecompressOptions
      • LoadFontsOptions
      • AxisInfo
      • SubsetAxisInfo
      • StyleValue
      • FeatureInfo
      • NamedInstance
      • StyleKey
      • StyleValues
      • SfntVersion
      • DesignAxisRecord
      • AxisValueSingle
      • AxisValueRange
      • AxisValueLinked
      • AxisValueMultiple
      • AxisValue
      • StyleAttributes
      • SubsettedFont
      • SubsetInfo
      • SubsetAxisSetting
      • SubsetSettings
      • FontRef
      • SubsetName
      • SUBSET_NAMES
    • Comparison with other tools
    • Web app

NamedInstance

Information about a named/predefined instance in a variable font.

type NamedInstance = {
    subfamilyName: string | null;
    postscriptName: string | null;
    coords: Partial<Record<string, number>>;
}
  • Defined in font-types.ts:58
Index

Properties

subfamilyName postscriptName coords

Properties

subfamilyName

subfamilyName: string | null

The instance's subfamily name (e.g. "Bold Condensed Display").

  • Defined in font-types.ts:60

postscriptName

postscriptName: string | null

The instance's PostScript name. See Adobe Technical Note #5902 for more information.

  • Defined in font-types.ts:66

coords

coords: Partial<Record<string, number>>

The OpenType variation axis coordinates that correspond to this named instance.

  • Defined in font-types.ts:68