This improve greatly the performance and the code cleaning. It allows us to separate the inseparable class methods into modules functions
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { IContainerModel } from './ContainerModel';
|
|
|
|
export interface HistoryState {
|
|
MainContainer: IContainerModel
|
|
SelectedContainer: IContainerModel | null
|
|
SelectedContainerId: string
|
|
TypeCounters: Record<string, number>
|
|
}
|