@fesjs/fes-design
Version:
fes-design for PC
90 lines (89 loc) • 2.69 kB
TypeScript
import { type ExtractPropTypes, type PropType } from 'vue';
declare const cascaderNodeProps: {
readonly value: {
readonly type: PropType<string | number>;
readonly required: true;
};
readonly label: {
readonly type: StringConstructor;
readonly required: true;
};
readonly disabled: {
readonly type: BooleanConstructor;
};
readonly selectable: {
readonly type: BooleanConstructor;
};
readonly checkable: {
readonly type: BooleanConstructor;
};
readonly isLeaf: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly level: {
readonly type: NumberConstructor;
readonly default: 0;
};
};
export type CascaderNodeProps = Partial<ExtractPropTypes<typeof cascaderNodeProps>>;
declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
readonly value: {
readonly type: PropType<string | number>;
readonly required: true;
};
readonly label: {
readonly type: StringConstructor;
readonly required: true;
};
readonly disabled: {
readonly type: BooleanConstructor;
};
readonly selectable: {
readonly type: BooleanConstructor;
};
readonly checkable: {
readonly type: BooleanConstructor;
};
readonly isLeaf: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly level: {
readonly type: NumberConstructor;
readonly default: 0;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
readonly value: {
readonly type: PropType<string | number>;
readonly required: true;
};
readonly label: {
readonly type: StringConstructor;
readonly required: true;
};
readonly disabled: {
readonly type: BooleanConstructor;
};
readonly selectable: {
readonly type: BooleanConstructor;
};
readonly checkable: {
readonly type: BooleanConstructor;
};
readonly isLeaf: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly level: {
readonly type: NumberConstructor;
readonly default: 0;
};
}>> & Readonly<{}>, {
readonly disabled: boolean;
readonly selectable: boolean;
readonly checkable: boolean;
readonly level: number;
readonly isLeaf: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;