Renamed interfaces to IInterface

This commit is contained in:
Siklos 2022-08-12 09:51:20 +02:00
parent 6c601429b9
commit 4d17249818
32 changed files with 106 additions and 105 deletions

View file

@ -1,8 +1,8 @@
import * as React from 'react';
import { HistoryState } from "../../Interfaces/HistoryState";
import { IHistoryState } from "../../Interfaces/IHistoryState";
interface IHistoryProps {
history: HistoryState[]
history: IHistoryState[]
historyCurrentStep: number
isOpen: boolean
jumpTo: (move: number) => void