Newer
Older
/* eslint-disable camelcase */
import {
UserExplorationState,
UserExplorationType,
} from 'enum/userExploration.enum'
import { DateTime } from 'luxon'
export interface ExplorationEntity {
id: string
state: UserExplorationState
description: string
complementary_description: string
target: number
type: UserExplorationType
date: string | null
ecogesture_id: string
fluid_condition: FluidType[]
}
export interface UserExploration extends Omit<ExplorationEntity, 'date'> {
progress: number
date: DateTime | null
}