/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface Attachment { id: number; author?: string; mimeType?: string; filename: string; filesize?: string; created: string; comment?: string; commentOutput?: string; url: string; } //# sourceMappingURL=Attachment.d.ts.map