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 readonly type: RegionType = 'province';
}

Extends

Members

constructor

method
type:
(input?: DeepPartial<Province>) => Province

type

property
type:
RegionType