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

SubsetInfo

Information about a Google Fonts-defined character subset with regards to a certain font.

type SubsetInfo = {
    name: SubsetName;
    coverage: number;
    covered: boolean;
}
  • Defined in font-types.ts:277
Index

Properties

name coverage covered

Properties

name

name: SubsetName

Google Fonts' name for this character subset (e.g. "latin", "latin-ext", "adlam").

  • Defined in font-types.ts:279

coverage

coverage: number

Percentage of code points in this subset included in this font.

  • Defined in font-types.ts:281

covered

covered: boolean

Whether this subset counts as partially covered by this font. The threshold is different for different subsets.

  • Defined in font-types.ts:285