Files
study-bible-project/node_modules/docx/dist/file/fonts/create-regular-font.d.ts
T

9 lines
356 B
TypeScript

import { XmlComponent } from '../xml-components';
import { CharacterSet } from './font';
export declare const createRegularFont: ({ name, index, fontKey, characterSet, }: {
readonly name: string;
readonly index: number;
readonly fontKey: string;
readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
}) => XmlComponent;