import { ApiAttachmentModel } from '../model/apiAttachmentModel'; import { CollectionDto } from './collectionDto'; export interface AttachmentApi { getAll(): Promise>; download(id: string): string; delete(id: string): Promise; preview(id: string): string; create(file: File): Promise; }