Skip to content

Commit

Permalink
fix: The Favro Card Update type does not include null as an option fo…
Browse files Browse the repository at this point in the history
…r date fields.
  • Loading branch information
adam-coster committed Aug 17, 2021
1 parent cb74e1b commit fb9431b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/FavroCardTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export interface DataFavroCardFieldMultipleSelect {
}

/** {@link https://favro.com/developer/#card-assignment} */
interface DataFavroCardAssignment {
export interface DataFavroCardAssignment {
userId: string;
completed: boolean;
}
Expand Down Expand Up @@ -265,11 +265,11 @@ export interface DataFavroCard {
/**
* The start date of the card.
*/
startDate: string;
startDate: string | null;
/**
* The due date of the card.
*/
dueDate: string;
dueDate: string | null;
/**
* The users assigned to the card and whether or not they have
* completed the card. */
Expand Down

0 comments on commit fb9431b

Please sign in to comment.