mirror of
https://github.com/actions/stale.git
synced 2025-12-26 02:08:18 +00:00
7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
import {IUser} from './user';
|
|
|
|
export interface IComment {
|
|
user: IUser;
|
|
body: string;
|
|
}
|