Skip to content

Commit

Permalink
jsdoc: add missing jsdoc lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ilandikov committed Sep 23, 2024
1 parent 3e9a4ff commit 37828ef
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Statuses/Status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export class Status {
* A default status of empty, used when things go wrong.
*
* @static
* @type {Status}
* @memberof Status
*/
public static EMPTY: Status = new Status(new StatusConfiguration('', 'EMPTY', '', true, StatusType.EMPTY));
Expand All @@ -44,20 +45,32 @@ export class Status {

/**
* The default Cancelled status. Goes to Todo when toggled.
*
* @static
* @type {Status}
* @memberof Status
*/
public static CANCELLED: Status = new Status(
new StatusConfiguration('-', 'Cancelled', ' ', true, StatusType.CANCELLED),
);

/**
* The default In Progress status. Goes to Done when toggled.
*
* @static
* @type {Status}
* @memberof Status
*/
public static IN_PROGRESS: Status = new Status(
new StatusConfiguration('/', 'In Progress', 'x', true, StatusType.IN_PROGRESS),
);

/**
* A sample Non-Task status. Goes to NON_TASK when toggled.
*
* @static
* @type {Status}
* @memberof Status
*/
public static NON_TASK: Status = new Status(
new StatusConfiguration('Q', 'Non-Task', 'A', true, StatusType.NON_TASK),
Expand Down

0 comments on commit 37828ef

Please sign in to comment.