tdesign-mobile-vue
Version:
tdesign-mobile-vue
37 lines (36 loc) • 1.11 kB
TypeScript
import { TdColorPickerProps } from './type';
import { PropType } from 'vue';
declare const _default: {
clearable: BooleanConstructor;
enableAlpha: BooleanConstructor;
fixed: BooleanConstructor;
format: {
type: PropType<TdColorPickerProps['format']>;
default: TdColorPickerProps['format'];
validator(val: TdColorPickerProps['format']): boolean;
};
swatchColors: {
type: PropType<TdColorPickerProps['swatchColors']>;
default: TdColorPickerProps['swatchColors'];
};
type: {
type: PropType<TdColorPickerProps['type']>;
default: TdColorPickerProps['type'];
validator(val: TdColorPickerProps['type']): boolean;
};
value: {
type: StringConstructor;
default: any;
};
modelValue: {
type: StringConstructor;
default: any;
};
defaultValue: {
type: StringConstructor;
default: string;
};
onChange: PropType<TdColorPickerProps['onChange']>;
onPaletteBarChange: PropType<TdColorPickerProps['onPaletteBarChange']>;
};
export default _default;