opentype.features.js
Version:
Library to list opentype fonts optional features.
25 lines (24 loc) • 565 B
TypeScript
export default Substitution;
/**
* @exports opentype.Substitution
* @class
* @extends opentype.Layout
* @param {opentype.Font}
* @constructor
*/
declare function Substitution(font: any): void;
declare class Substitution {
/**
* @exports opentype.Substitution
* @class
* @extends opentype.Layout
* @param {opentype.Font}
* @constructor
*/
constructor(font: any);
/**
* Create a default GSUB table.
* @return {Object} gsub - The GSUB table.
*/
createDefaultTable(): Object;
}