import type { DateTimeTzString } from "../types/DateTimeTzString"; import type { User } from "./User"; export interface WikiAttachmentFile { readonly id: number; readonly name: string; readonly size: number; readonly createdUser: User; readonly created: DateTimeTzString; }