Skip to content
Snippets Groups Projects
timePeriod.model.ts 108 B
Newer Older
  • Learn to ignore specific revisions
  • import { DateTime } from 'luxon'
    
    export interface TimePeriod {
      startDate: DateTime
      endDate: DateTime
    }