• Parameters

    • state: {
          bandwidth: {
              maxValue: number;
              remained: number;
          };
      } = initialState
      • bandwidth: {
            maxValue: number;
            remained: number;
        }
        • maxValue: number
        • remained: number
    • action: any

    Returns {
        bandwidth: {
            maxValue: any;
            remained: any;
        };
    }

    • bandwidth: {
          maxValue: any;
          remained: any;
      }
      • maxValue: any
      • remained: any