1
2
3
4
5
6
7
8
9
10
11
12
13
14
| import FormatBlot from './abstract/format';
| import * as Registry from '../registry';
| declare class InlineBlot extends FormatBlot {
| static blotName: string;
| static scope: Registry.Scope;
| static tagName: string;
| static formats(domNode: HTMLElement): any;
| format(name: string, value: any): void;
| formatAt(index: number, length: number, name: string, value: any): void;
| optimize(context: {
| [key: string]: any;
| }): void;
| }
| export default InlineBlot;
|
|