mirror of
https://github.com/actions/stale.git
synced 2026-01-01 22:07:35 +08:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
|
|
import {Label} from '../IssueProcessor';
|
||
|
|
import {IsoDateString} from '../types/iso-date-string';
|
||
|
|
import {IMilestone} from './milestone';
|
||
|
|
|
||
|
|
export interface IIssue {
|
||
|
|
title: string;
|
||
|
|
number: number;
|
||
|
|
created_at: IsoDateString;
|
||
|
|
updated_at: IsoDateString;
|
||
|
|
labels: Label[];
|
||
|
|
pull_request: Object | null | undefined;
|
||
|
|
state: string;
|
||
|
|
locked: boolean;
|
||
|
|
milestone: IMilestone | undefined;
|
||
|
|
}
|