Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TruckWeight

import type { TruckWeight } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";

Contains details about the truck's weight specifications. Used to avoid roads that can't support or allow the total weight for requests that specify TravelMode as Truck.

interface TruckWeight {
Total?: number | null;
Unit?: VehicleWeightUnit | null;
}

§Properties

§
Total?: number | null
[src]

The total weight of the truck.

  • For example, 3500.
§

The unit of measurement to use for the truck weight.

Default Value: Kilograms