UNPKG

@eclipse-scout/core

Version:
18 lines 509 B
import { Widget, WidgetModel } from '../index'; export interface FileInputModel extends WidgetModel { /** * @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; /** * Default is false. */ multiSelect?: boolean; text?: string; uploadController?: Widget; } //# sourceMappingURL=FileInputModel.d.ts.map