7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import { Comment } from './comment';
|
|
export interface CommentLookupRsp {
|
|
comment?: Comment;
|
|
}
|