import { IShortGitHubUser } from './IGitHubRepo';
import { IGitHubUser } from './IGitHubUser';
export interface IGitHubIssue {
    title: string;
    body: string;
    number: number;
    id: string | number;
    url: string;
    state: 'open' | 'closed';
    locked: boolean;
    html_url: string;
    user: IGitHubUser;
}
export interface IShortGitHubIssue {
    title: string;
    body: string;
    number: number;
    id: string | number;
    url: string;
    state: 'open' | 'closed';
    locked: boolean;
    html_url: string;
    user: IShortGitHubUser;
}
//# sourceMappingURL=IGitHubIssue.d.ts.map