fontjs
Version:
FontJS (Font.js) is a packages for TrueType font parsing and manipulation
9 lines (8 loc) • 309 B
TypeScript
import { SeqStream } from "bytestreamjs";
import { FontTable } from "../../Table";
import { GDEFParameters } from "./LigCaretListTable";
export declare class GDEF extends FontTable {
constructor(parameters?: GDEFParameters);
static get tag(): number;
static fromStream(stream: SeqStream): GDEF;
}