20 lines
484 B
TypeScript
20 lines
484 B
TypeScript
/**
|
|
* Object containing information about a successfully uploaded file.
|
|
*/
|
|
import { List } from '@iqser/common-ui';
|
|
|
|
export interface IFileUploadResult {
|
|
/**
|
|
* List of fileIds generated for uploaded file(s).
|
|
*/
|
|
fileIds?: List;
|
|
/**
|
|
* List processed file attributes, in case the upload contained a CSV.
|
|
*/
|
|
processedAttributes?: List;
|
|
/**
|
|
* List processed fileIds, in case the upload contained a CSV.
|
|
*/
|
|
processedFileIds?: List;
|
|
}
|