Interface Issue

interface Issue {
    assignee: null | string;
    date: string;
    directions: ("bug" | "enhancement" | "question")[];
    flags: {
        helpWanted: boolean;
        question: boolean;
        triage: boolean;
        unanswered: boolean;
    };
    id: number;
    isPR: boolean;
    labels: string[];
    title: string;
    url: string;
    version: null | SemVer;
}

Properties

assignee: null | string
date: string
directions: ("bug" | "enhancement" | "question")[]
flags: {
    helpWanted: boolean;
    question: boolean;
    triage: boolean;
    unanswered: boolean;
}

Type declaration

  • helpWanted: boolean
  • question: boolean
  • triage: boolean
  • unanswered: boolean
id: number
isPR: boolean
labels: string[]
title: string
url: string
version: null | SemVer