Files
stale/src/interfaces/pull-request.ts
T

8 lines
103 B
TypeScript
Raw Normal View History

export interface IPullRequest {
number: number;
head: {
ref: string;
};
2022-03-31 15:38:16 -04:00
draft?: boolean;
}