Merged PR 185: Implement Messages

This commit is contained in:
Eric Nguyen 2022-09-16 10:03:41 +00:00
parent 8a7196eeac
commit e94671d1d8
15 changed files with 242 additions and 15 deletions

View file

@ -0,0 +1,7 @@
/* eslint-disable @typescript-eslint/naming-convention */
import { IHistoryState } from './IHistoryState';
export interface IGetFeedbackRequest {
/** Current application state */
ApplicationState: IHistoryState
}