svg-layout-designer-react/src/Interfaces/IEditorState.ts
Siklos 704dab7307
All checks were successful
continuous-integration/drone/push Build is passing
Implement anchor and fix bugs with rigid body (#27)
Co-authored-by: Eric NGUYEN <enguyen@techform.fr>
Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/27
2022-08-12 11:47:21 -04:00

8 lines
223 B
TypeScript

import { IConfiguration } from './IConfiguration';
import { IHistoryState } from './IHistoryState';
export interface IEditorState {
history: IHistoryState[]
historyCurrentStep: number
configuration: IConfiguration
}