huridocs/uwazi

View on GitHub
app/api/files.v2/model/UwaziFile.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Attachment } from './Attachment';
import { CustomUpload } from './CustomUpload';
import { Document } from './Document';
import { URLAttachment } from './URLAttachment';

export type UwaziFile = Document | Attachment | URLAttachment | CustomUpload;