font-reader 0.1.10

Reads fonts in passed directories and return objects of fonts for Figma Font Helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub type Fonts = Vec<Font>;

pub struct Font {
  pub postscript: String,
  pub family: String,
  pub id: String,
  pub style: String,
  pub weight: u16,
  pub stretch: u16,
  pub italic: bool,
}