UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

20 lines (17 loc) 181 B
/** * Address district */ export type AddressDistrict = { /** * Id */ id: number; /** * Number id */ num?: string; /** * Name */ label: string; };