@vendure/core
Version:
A modern, headless ecommerce framework
14 lines (13 loc) • 491 B
TypeScript
import { DeepPartial } from '@vendure/common/lib/shared-types';
import { Region, RegionType } from './region.entity';
/**
* @description
* A Province represents an administrative subdivision of a {@link Country}. For example, in the
* United States, the country would be "United States" and the province would be "California".
*
* @docsCategory entities
*/
export declare class Province extends Region {
constructor(input?: DeepPartial<Province>);
readonly type: RegionType;
}