UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

38 lines (37 loc) 951 B
import { ExtractPropTypes } from "vue"; export declare const conditionTitleProps: { id: { type: StringConstructor; }; required: { type: BooleanConstructor; default: boolean; }; title: { type: StringConstructor; default: string; }; valid: { type: BooleanConstructor; default: boolean; }; inValidTip: { type: StringConstructor; default: string; }; showSubTitle: { type: BooleanConstructor; default: boolean; }; showCollapse: { type: BooleanConstructor; default: boolean; }; subTitle: { type: StringConstructor; default: string; }; }; export type ConditionTitleProps = ExtractPropTypes<typeof conditionTitleProps>; export declare const conditionPanelListProps: Record<string, any>; export type ConditionPanelListProps = ExtractPropTypes<typeof conditionPanelListProps>;