svg-layout-designer-react/src/Interfaces/IGetFeedbackResponse.ts
2023-02-23 13:54:38 +01:00

7 lines
169 B
TypeScript

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