mirror of
https://github.com/actions/stale.git
synced 2025-12-28 19:18:16 +00:00
16 lines
386 B
TypeScript
16 lines
386 B
TypeScript
import {IsoDateString} from '../types/iso-date-string';
|
|
import {ILabel} from './label';
|
|
import {IMilestone} from './milestone';
|
|
|
|
export interface IIssue {
|
|
title: string;
|
|
number: number;
|
|
created_at: IsoDateString;
|
|
updated_at: IsoDateString;
|
|
labels: ILabel[];
|
|
pull_request: Object | null | undefined;
|
|
state: string;
|
|
locked: boolean;
|
|
milestone: IMilestone | undefined;
|
|
}
|