sesaparcours
    Preparing search index...
    interface ICopyable {
        id: string;
        isDeletable(): boolean;
        isMovable(): boolean;
        select(): void;
        toCopyData(): CopyData;
        unselect(): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    id: string

    Methods

    • Get whether this object is deletable or not.

      Returns boolean

      True if deletable.

    • Get whether this is movable or not.

      Returns boolean

      True if movable.

    • Select this. Highlight it visually.

      Returns void

    • Encode for copying.

      Returns CopyData

      Copy metadata.

    • Unselect this. Unhighlight it visually.

      Returns void