9 lines
142 B
TypeScript

import {IComment} from './IComment'
export interface ICommentTree {
rootIds: number[],
commentsById: {
[key: number]: IComment
}
}