9 lines
255 B
TypeScript
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);
|
|
}
|