Skip to content
Snippets Groups Projects
analysis.model.ts 237 B
Newer Older
  • Learn to ignore specific revisions
  • import { DateTime } from 'luxon'
    
    
    export interface AnalysisAttributes {
    
      sendAnalysisNotification: boolean
    
      haveSeenLastAnalysis: boolean
    
      monthlyAnalysisDate: DateTime
    
    
    export interface AnalysisState {
      period: 'month' | 'year'
    }