nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
24 lines (20 loc) • 489 B
text/typescript
export interface AddressRegionData {
name: string
[key: string]: any
}
export interface CustomRegionData {
title: string
list: any[]
}
export interface AddressExistRegionData {
id?: string | number
provinceName: string
cityName: string
countyName: string
townName: string
addressDetail: string
selectedAddress: boolean
[key: string]: any
}
export const addressType = ['exist', 'custom', 'custom2'] as const
export type AddressType = (typeof addressType)[number]