import { AvatarUrls } from "./avatars"; import { User } from "./user"; export interface PartialAttachment { readonly self: string; readonly filename: string; readonly author: User; readonly created: string; readonly size: number; readonly mimeType: string; readonly content: string; readonly thumbnail?: string; } export interface PartialProjectCategory { readonly self: string; readonly description: string; readonly name: string; } export interface PartialProject { readonly self: string; readonly key: string; readonly name: string; readonly avatarUrls?: AvatarUrls; readonly projectTypeKey?: string; readonly simplified?: boolean; } //# sourceMappingURL=shared-types.d.ts.map