mirror of
https://github.com/actions/stale.git
synced 2025-12-28 19:18:16 +00:00
* 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;
|
|
}
|