tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
19 lines (18 loc) • 603 B
TypeScript
import { PropType } from 'vue';
import type { Theme, Mode } from './interface';
export declare const Props: {
readonly theme: {
readonly type: PropType<Theme>;
readonly default: () => Theme;
readonly validator: (v: Theme) => boolean;
};
readonly shadow: BooleanConstructor;
readonly mode: {
readonly type: PropType<Mode>;
readonly default: () => Mode;
readonly validator: (v: Mode) => boolean;
};
readonly backgroundColor: StringConstructor;
readonly textColor: StringConstructor;
readonly collapse: BooleanConstructor;
};