Enumeration EnumLikeObject

Since TypeScript's enum can be inconvenient to work with, some packages define their own enum-like objects:

export const EnumLikeObject = {
Pending: 'pending',
InProgress: 'inProgress',
Completed: 'completed'
} as const

Use the @enum tag to make TypeDoc document this object as an enum.

Enumeration Members

Enumeration Members

Pending: "pending"
InProgress: "inProgress"

Indicates that a courier is en route delivering this order.

Completed: "completed"

Generated using TypeDoc