HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/web.enelar.com.co/node_modules/quill/blots/scroll.d.ts
import { LeafBlot, ScrollBlot } from 'parchment';
import type { Blot, Registry } from 'parchment';
import Delta from 'quill-delta';
import Emitter from '../core/emitter.js';
import type { EmitterSource } from '../core/emitter.js';
import Block, { BlockEmbed } from './block.js';
import Container from './container.js';
declare class Scroll extends ScrollBlot {
    static blotName: string;
    static className: string;
    static tagName: string;
    static defaultChild: typeof Block;
    static allowedChildren: (typeof Block | typeof BlockEmbed | typeof Container)[];
    emitter: Emitter;
    batch: false | MutationRecord[];
    constructor(registry: Registry, domNode: HTMLDivElement, { emitter }: {
        emitter: Emitter;
    });
    batchStart(): void;
    batchEnd(): void;
    emitMount(blot: Blot): void;
    emitUnmount(blot: Blot): void;
    emitEmbedUpdate(blot: Blot, change: unknown): void;
    deleteAt(index: number, length: number): void;
    enable(enabled?: boolean): void;
    formatAt(index: number, length: number, format: string, value: unknown): void;
    insertAt(index: number, value: string, def?: unknown): void;
    insertBefore(blot: Blot, ref?: Blot | null): void;
    insertContents(index: number, delta: Delta): void;
    isEnabled(): boolean;
    leaf(index: number): [LeafBlot | null, number];
    line(index: number): [Block | BlockEmbed | null, number];
    lines(index?: number, length?: number): (Block | BlockEmbed)[];
    optimize(context?: {
        [key: string]: any;
    }): void;
    optimize(mutations?: MutationRecord[], context?: {
        [key: string]: any;
    }): void;
    path(index: number): [Blot, number][];
    remove(): void;
    update(source?: EmitterSource): void;
    update(mutations?: MutationRecord[]): void;
    updateEmbedAt(index: number, key: string, change: unknown): void;
    protected handleDragStart(event: DragEvent): void;
    private deltaToRenderBlocks;
    private createBlock;
}
export default Scroll;