Skip to content

Commit

Permalink
feat: Add draft Tag types.
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-coster committed Jul 2, 2021
1 parent 1c2898a commit 65f1f58
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/types/FavroTagTypes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/** {@link https://favro.com/developer/#tag-colors} */
export type OptionFavroTagColor =
| 'blue'
| 'purple'
| 'cyan'
| 'green'
| 'lightgreen'
| 'yellow'
| 'orange'
| 'red'
| 'brown'
| 'gray'
| 'slategray';

/** {@link https://favro.com/developer/#tag} */
export interface DataFavroTag {
tagId: string;
organizationId: string;
name: string;
color: OptionFavroTagColor;
}

0 comments on commit 65f1f58

Please sign in to comment.