mirror of
https://github.com/actions/stale.git
synced 2026-06-30 22:02:43 +08:00
a88f7b30b9
* Update github package * Update dist * Use @actions/github@5.0.1 * Cleanup * More cleanup
7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
import {IUser} from './user';
|
|
|
|
export interface IComment {
|
|
user: IUser | null;
|
|
body?: string;
|
|
}
|