Type Alias Marker

    Identity shared across renderings; active is OR over bound locals.

    type Marker = {
        active: Cell<boolean>;
        color: Writable<Cell<string | null>>;
        bind(local: Writable<Cell<boolean>>): () => void;
        register(id: string): Marker;
    }
    Index

    Methods

    Properties

    Methods

    Properties

    active: Cell<boolean>
    color: Writable<Cell<string | null>>