Type alias ConnectOptions

ConnectOptions: {
    isPublic?: boolean;
    order?: number;
}

Options for the connect method

Type declaration

  • Optional isPublic?: boolean

    Handlers with isPublic=false will not be removed when signal.disconnectAll is called. Disconnect manually or via SignalConnections

  • Optional order?: number

    Handlers with a higher order value will be called later.