Type Definitions
TagItem
A Type representing a tag for a todo item
Type:
- Object
Properties:
Name | Type | Description |
---|---|---|
id |
number | The unique ID for the tag |
content |
string | The content of the tag |
TodoItem
A Type representing a todo item
Type:
- Object
Properties:
Name | Type | Description |
---|---|---|
id |
number | The unique ID for the todo item |
content |
string | The content of the todo item |
isDone |
boolean | Whether the todo item is completed or not |
category |
string | The category the todo item belongs to |
tags |
Array.<TagItem> | An array of tags for the todo item |