interface Epic {
    color: {
        key: string;
    };
    done: boolean;
    id: number;
    name: string;
    self: string;
    summary: string;
}

Properties

color: {
    key: string;
}

Type declaration

  • key: string
done: boolean
id: number
name: string
self: string
summary: string