UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

20 lines (17 loc) 179 B
/** * Address state */ export type AddressState = { /** * Id */ id: string; /** * Abbreviation */ abbr?: string; /** * Name */ label: string; };