Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Signal interface providing connect and disconnect for change notifications.

    interface SignalConnection<T extends (...args: never[]) => void> {
        connect: (slot: T) => void;
        disconnect: (slot: T) => void;
    }

    Type Parameters

    • T extends (...args: never[]) => void

      Slot function signature for signal handlers.

    Index

    Properties

    Properties

    connect: (slot: T) => void

    Connects a slot function to the signal.

    disconnect: (slot: T) => void

    Disconnects a slot function from the signal.