node-ovsdb
    Preparing search index...

    Interface OvsdbNotificationBase<TMethod, TParams>

    A JSON-RPC notification emitted by the server.

    interface OvsdbNotificationBase<
        TMethod extends string,
        TParams extends unknown[],
    > {
        id: null;
        method: TMethod;
        params: TParams;
    }

    Type Parameters

    • TMethod extends string
    • TParams extends unknown[]
    Index

    Properties

    Properties

    id: null
    method: TMethod
    params: TParams