1 | import type { ComponentPublicInstance } from 'vue';
|
2 | import { PickerExpose } from '../picker/types';
|
3 | import type { AreaProps } from './Area';
|
4 | export type AreaList = {
|
5 | city_list: Record<string, string>;
|
6 | county_list: Record<string, string>;
|
7 | province_list: Record<string, string>;
|
8 | };
|
9 | export type AreaInstance = ComponentPublicInstance<AreaProps, PickerExpose>;
|