tdesign-mobile-vue
Version:
tdesign-mobile-vue
55 lines (54 loc) • 1.46 kB
TypeScript
import { TdActionSheetProps } from './type';
import { PropType } from 'vue';
declare const _default: {
align: {
type: PropType<TdActionSheetProps['align']>;
default: TdActionSheetProps['align'];
validator(val: TdActionSheetProps['align']): boolean;
};
cancelText: {
type: StringConstructor;
default: string;
};
count: {
type: NumberConstructor;
default: number;
};
description: {
type: StringConstructor;
default: string;
};
items: {
type: PropType<TdActionSheetProps['items']>;
};
popupProps: {
type: PropType<TdActionSheetProps['popupProps']>;
default: () => {};
};
showCancel: {
type: BooleanConstructor;
default: boolean;
};
showOverlay: {
type: BooleanConstructor;
default: boolean;
};
theme: {
type: PropType<TdActionSheetProps['theme']>;
default: TdActionSheetProps['theme'];
validator(val: TdActionSheetProps['theme']): boolean;
};
visible: {
type: BooleanConstructor;
default: any;
};
modelValue: {
type: BooleanConstructor;
default: any;
};
defaultVisible: BooleanConstructor;
onCancel: PropType<TdActionSheetProps['onCancel']>;
onClose: PropType<TdActionSheetProps['onClose']>;
onSelected: PropType<TdActionSheetProps['onSelected']>;
};
export default _default;