Skip to content
Snippets Groups Projects
action.model.ts 243 B
Newer Older
  • Learn to ignore specific revisions
  • import { UserActionState } from 'enum/userAction.enum'
    import { DateTime } from 'luxon'
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    import { Ecogesture } from 'models'
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    export interface UserAction {
      ecogesture: Ecogesture | null
    
      state: UserActionState
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      startDate: DateTime | null