83f8dced86127ec84b42572954df62da093ca2690a1a7a19540bba629fffdcd082a0f88e42b52c627d3bd669540d9d73f9d50662f75ac31a8d257acf883405 436 B

123456789101112
  1. import { InlineBlot } from 'parchment';
  2. import type { BlotConstructor } from 'parchment';
  3. declare class Inline extends InlineBlot {
  4. static allowedChildren: BlotConstructor[];
  5. static order: string[];
  6. static compare(self: string, other: string): number;
  7. formatAt(index: number, length: number, name: string, value: unknown): void;
  8. optimize(context: {
  9. [key: string]: any;
  10. }): void;
  11. }
  12. export default Inline;