NeahNew/node_modules/quill/formats/bold.d.ts
2025-05-03 14:17:46 +02:00

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;