35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { type PropType } from 'vue';
|
|
import { type Numeric } from '../utils';
|
|
export type AddressListAddress = {
|
|
id: Numeric;
|
|
tel: Numeric;
|
|
name: string;
|
|
address: string;
|
|
isDefault?: boolean;
|
|
};
|
|
declare const _default: import("vue").DefineComponent<{
|
|
address: {
|
|
type: PropType<AddressListAddress>;
|
|
required: true;
|
|
};
|
|
disabled: BooleanConstructor;
|
|
switchable: BooleanConstructor;
|
|
defaultTagText: StringConstructor;
|
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "click" | "edit")[], "select" | "click" | "edit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
address: {
|
|
type: PropType<AddressListAddress>;
|
|
required: true;
|
|
};
|
|
disabled: BooleanConstructor;
|
|
switchable: BooleanConstructor;
|
|
defaultTagText: StringConstructor;
|
|
}>> & {
|
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
onEdit?: ((...args: any[]) => any) | undefined;
|
|
}, {
|
|
disabled: boolean;
|
|
switchable: boolean;
|
|
}>;
|
|
export default _default;
|