vant/src/switch/shared.ts

32 lines
546 B
TypeScript

/**
* Common Switch Props
*/
export type SharedSwitchProps = {
size?: string | number;
value?: any;
loading?: boolean;
disabled?: boolean;
activeValue: any;
inactiveValue: any;
activeColor?: string;
inactiveColor?: string;
};
export const switchProps = {
size: [Number, String],
value: null as any,
loading: Boolean,
disabled: Boolean,
activeColor: String,
inactiveColor: String,
activeValue: {
type: null as any,
default: true,
},
inactiveValue: {
type: null as any,
default: false,
},
};