forked from zicloud/bigscreen_admin
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
import { InlineBlot } from 'parchment';
|
|
import type { BlotConstructor } from 'parchment';
|
|
declare class Inline extends InlineBlot {
|
|
static allowedChildren: BlotConstructor[];
|
|
static order: string[];
|
|
static compare(self: string, other: string): number;
|
|
formatAt(index: number, length: number, name: string, value: unknown): void;
|
|
optimize(context: {
|
|
[key: string]: any;
|
|
}): void;
|
|
}
|
|
export default Inline;
|