Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
feat: update Agenda interface
Browse files Browse the repository at this point in the history
  • Loading branch information
YanceyOfficial committed Feb 3, 2020
1 parent e24756b commit 0984e7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/agenda/interfaces/agenda.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { Document } from 'mongoose'
export interface Agenda extends Document {
readonly _id: string
readonly title: string
readonly startDate: Date
readonly endDate?: Date
readonly startDate: string
readonly endDate?: string
readonly rRule?: string
readonly exDate?: Date
readonly exDate?: string
readonly createdAt: string
readonly updatedAt: string
}

0 comments on commit 0984e7e

Please sign in to comment.