SheetXL - v0.3.20
    Preparing search index...

    Interface Attached<P>

    All elements attached to a DOM element will have the additional methods from Attached.

    interface Attached<P> {
        detach: () => Promise<void>;
        update: (props: P) => Promise<void>;
    }

    Type Parameters

    • P
    Index

    Properties

    Properties

    detach: () => Promise<void>

    Detaches the SheetXL React component from its DOM element.

    This will clean up any React roots or event listeners.

    update: (props: P) => Promise<void>

    Updates the properties of the attached SheetXL instance.

    Type declaration

      • (props: P): Promise<void>
      • Parameters

        • props: P

          The new properties to apply.

        Returns Promise<void>

        A promise that resolves when the update is complete.