add problems to step records

This commit is contained in:
Julien Calixte
2023-04-10 13:01:37 +02:00
parent d517853472
commit d97b297c9b
3 changed files with 27 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
import type { ISODate } from '@/shared/types/date'
export interface StepRecordable {
problems: string[]
start: ISODate
end?: ISODate
}