opentype.features.js
Version:
Library to list opentype fonts optional features.
20 lines (19 loc) • 463 B
TypeScript
declare namespace _default {
export { parseGposTable as parse };
export { makeGposTable as make };
}
export default _default;
declare function parseGposTable(data: any, start: any): {
version: any;
scripts: any;
features: any;
lookups: any;
variations?: undefined;
} | {
version: any;
scripts: any;
features: any;
lookups: any;
variations: any;
};
declare function makeGposTable(gpos: any): any;