package patoline

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type slant =
  1. | Roman
  2. | Italic

Selecting fonts

type weight =
  1. | Regular
  2. | Bold
  3. | Black
type t = {
  1. family : string;
  2. slant : slant;
  3. weight : weight;
}