UNPKG

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