UNPKG

@ngx-dropzone/cdk

Version:
17 lines (16 loc) 687 B
/** * Returns an exception to be thrown when attempting to add the `FileInputDirective` * to an HTML `<input>` element with a type other than "file". */ export declare function getInputTypeError(): Error; /** * Returns an exception to be thrown when attempting to assign an array value * to a file input element without the `multiple` attribute. */ export declare function getArrayValueError(): Error; /** * Returns an exception to be thrown when attempting to assign a non-array value * to a file input element in `multiple` mode. Note that `undefined` and `null` are * valid values to allow for resetting the value. */ export declare function getNonArrayValueError(): Error;