melody-iuvo/src/config/statusChoices.ts
Naomi Carrigan d6ebb96d4f
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 46s
feat: initial prototype
2025-02-10 23:23:49 -08:00

17 lines
488 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { Status } from "../interfaces/status.js";
import type { APIApplicationCommandOptionChoice } from "discord.js";
export const statusChoices: Array<APIApplicationCommandOptionChoice<Status>>
= [
{ name: "TODO", value: "todo" },
{ name: "In Progress", value: "in-progress" },
{ name: "In Review", value: "in-review" },
{ name: "Complete", value: "complete" },
];