Interface MediaValidationResult

interface MediaValidationResult {
    allowedTypes?: string[];
    error?: string;
    isValid: boolean;
    maxSize?: number;
}

Properties

allowedTypes?: string[]
error?: string
isValid: boolean
maxSize?: number