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

9 lines
306 B
TypeScript

import Inline from '../blots/inline.js';
declare class Script extends Inline {
static blotName: string;
static tagName: string[];
static create(value: 'super' | 'sub' | (string & {})): HTMLElement;
static formats(domNode: HTMLElement): "super" | "sub" | undefined;
}
export default Script;