10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
import { XmlComponent } from '../xml-components';
|
|
import { CharacterSet } from './font';
|
|
import { FontOptionsWithKey } from './font-wrapper';
|
|
export type FontOptions = {
|
|
readonly name: string;
|
|
readonly data: Buffer;
|
|
readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
|
|
};
|
|
export declare const createFontTable: (fonts: readonly FontOptionsWithKey[]) => XmlComponent;
|