Files
study-bible-project/node_modules/docx/dist/file/paragraph/run/symbol-run.d.ts
T

9 lines
255 B
TypeScript

import { IRunOptions, Run } from './run';
export type ISymbolRunOptions = {
readonly char: string;
readonly symbolfont?: string;
} & IRunOptions;
export declare class SymbolRun extends Run {
constructor(options: ISymbolRunOptions | string);
}