7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
import { type IMessage } from './IMessage';
|
|
|
|
export interface IGetFeedbackResponse {
|
|
messages: IMessage[]
|
|
}
|