Files
education/frontend/node_modules/quill/formats/bold.d.ts
T

12 lines
290 B
TypeScript

import Inline from '../blots/inline.js';
declare class Bold extends Inline {
static blotName: string;
static tagName: string[];
static create(): HTMLElement;
static formats(): boolean;
optimize(context: {
[key: string]: any;
}): void;
}
export default Bold;