@skillbill/vuelace-3
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/@skillbill%2Fvuelace-3)
18 lines (16 loc) • 455 B
TypeScript
import { VLInputRuleType } from '../utils/types';
import { VLFileInputErrorEvent } from '../VLFileInput';
export interface VLImageUploadProps {
class?: string;
name?: string;
label: string;
placeholder?: string;
error?: string;
helpText?: string;
clearable?: boolean;
required?: boolean;
disabled?: boolean;
imgStyle?: string;
rules?: VLInputRuleType[];
onError?: (error: VLFileInputErrorEvent) => void;
}