Skip to content

Commit

Permalink
- Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Sep 27, 2024
1 parent 2ae2e19 commit 3778b61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion types/Shipment/Shipment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ export declare class Shipment implements IShipment {
* @param endShipperId The ID of the end shipper to purchase the shipment with.
* @returns {Promise<Shipment>} The created {@link Shipment}.
*/
static buy(id: string, rate: string | IRate, insuranceAmount?: number, endShipperId?: string): Promise<Shipment>;
static buy(
id: string,
rate: string | IRate,
insuranceAmount?: number,
endShipperId?: string,
): Promise<Shipment>;

/**
* Refunding a Shipment is available for many carriers supported by EasyPost.
Expand Down

0 comments on commit 3778b61

Please sign in to comment.