Binary Raw - Docs
    Preparing search index...

    Handle returned by mountInspector for external updates and cleanup.

    interface InspectorHandle {
        clear(): void;
        destroy(): void;
        setBuffer(buffer: Uint8Array): void;
        setCursor(offset: AbsoluteOffset): void;
        setSection(node: SectionNode): void;
        setSelection(sel: SelectionState): void;
    }
    Index

    Methods

    • Replaces the internal buffer reference (after an edit or a new file load).

      Parameters

      • buffer: Uint8Array

        The new buffer.

      Returns void