Type Alias DsrRequest<Payload>

DsrRequest: {
    body: {
        data: Payload;
        type: typeof DSR_API_METHOD_TYPES[keyof typeof DSR_API_METHOD_TYPES];
    };
    id: string;
    type: typeof DSR_API_TYPES["DSR_REQUEST"];
}

Type Parameters

  • Payload = any

Type declaration