@eclipse-scout/core
Version:
Eclipse Scout runtime
14 lines • 480 B
TypeScript
import { ValueFieldModel } from '../../../index';
export interface FileChooserButtonModel extends ValueFieldModel<File> {
/**
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept
*/
acceptTypes?: string;
/**
* Default is {@link FileInput.DEFAULT_MAXIMUM_UPLOAD_SIZE}.
*/
maximumUploadSize?: number;
iconId?: string;
fileExtensions?: string | string[];
}
//# sourceMappingURL=FileChooserButtonModel.d.ts.map