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