import { User } from './user'; export interface Comment { note?: string; path?: null | string; line?: null | number; line_type?: null | string; author?: User; created_at?: string; } export interface Discussion { id?: string; individual_note?: boolean; notes?: { id?: number; type?: null | string; body?: string; attachment?: null | any; author?: User; created_at?: string; updated_at?: string; system?: boolean; noteable_id?: null | any; noteable_type?: string; resolvable?: boolean; confidential?: boolean; noteable_iid?: null | any; commands_changes?: Record; }[]; } //# sourceMappingURL=comment.d.ts.map