Province
Province
A Province represents an administrative subdivision of a Country. For example, in the United States, the country would be "United States" and the province would be "California".
Signature
class Province extends Region {
constructor(input?: DeepPartial<Province>)
readonly type: RegionType = 'province';
}
- Extends:
Region