RAGS - v1.10.0
    Preparing search index...

    Type Alias Connectable

    An object that supports signal connections and disconnections.

    type Connectable = {
        connect: (
            sig: string,
            callback: (...args: unknown[]) => unknown,
        ) => number;
        disconnect: (id: number) => void;
    }
    Index

    Properties

    Properties

    connect: (sig: string, callback: (...args: unknown[]) => unknown) => number
    disconnect: (id: number) => void