public addGlobalShipper()

in src/client/src/analytics_client/shippers_registry.ts [38:44]


  public addGlobalShipper(shipperName: ShipperName, shipper: IShipper) {
    if (this.globalShippers.get(shipperName)) {
      throw new Error(`Shipper "${shipperName}" is already registered`);
    }
    this.globalShippers.set(shipperName, shipper);
    this.allShippers.set(shipperName, shipper);
  }