Type alias OrderSubscriberConfig

OrderSubscriberConfig: {
    driftClient: DriftClient;
    subscriptionConfig: {
        frequency: number;
        type: "polling";
    } | {
        skipInitialLoad?: boolean;
        type: "websocket";
    };
}

Type declaration

  • driftClient: DriftClient
  • subscriptionConfig: {
        frequency: number;
        type: "polling";
    } | {
        skipInitialLoad?: boolean;
        type: "websocket";
    }

Generated using TypeDoc