mirror of
https://github.com/actions/stale.git
synced 2025-12-31 05:17:41 +08:00
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
|
|
import {ILabel} from './label';
|
||
|
|
|
||
|
|
export interface IIssueEvent {
|
||
|
|
created_at: string;
|
||
|
|
event: string;
|
||
|
|
label: ILabel;
|
||
|
|
}
|