8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { type IConfiguration } from './IConfiguration';
|
|
import { type IHistoryState } from './IHistoryState';
|
|
|
|
export interface IEditorState {
|
|
history: IHistoryState[]
|
|
historyCurrentStep: number
|
|
configuration: IConfiguration
|
|
}
|