All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Eric NGUYEN <enguyen@techform.fr> Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/27
8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { IConfiguration } from './IConfiguration';
|
|
import { IHistoryState } from './IHistoryState';
|
|
|
|
export interface IEditorState {
|
|
history: IHistoryState[]
|
|
historyCurrentStep: number
|
|
configuration: IConfiguration
|
|
}
|