fontjs
Version:
FontJS (Font.js) is a packages for TrueType font parsing and manipulation
13 lines (12 loc) • 371 B
TypeScript
import { SeqStream } from "bytestreamjs";
import { FontTable } from "../Table";
export interface CVTParameters {
values?: number[];
}
export declare class CVT extends FontTable {
values: number[];
constructor(parameters?: CVTParameters);
static get tag(): number;
toStream(stream: SeqStream): boolean;
static fromStream(stream: SeqStream): CVT;
}