tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
37 lines (36 loc) • 1.1 kB
TypeScript
import { PropType } from 'vue';
import type { Direction } from './interface';
export declare const Props: {
readonly modelValue: BooleanConstructor;
readonly direction: {
readonly type: PropType<Direction>;
readonly default: () => Direction;
readonly validator: (v: Direction) => boolean;
};
readonly size: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly title: StringConstructor;
readonly appendToBody: BooleanConstructor;
readonly modal: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly modalClose: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly showClose: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly showHeader: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly zIndex: {
readonly type: NumberConstructor;
readonly default: () => number;
};
};