UNPKG

@noaignite/centra-types

Version:

Typescript definitions for centra apis

19 lines (16 loc) 357 B
export interface State { state?: string | null name?: string | null } export interface Country { country?: string | null name?: string | null eu?: boolean | null language?: string | null states?: State[] currency?: string | null } export interface CountryAuthorized extends Country { pricelist?: string | null market?: string | null }