mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 22:11:06 -05:00
* Add types * Delete stuff * wip * findAllBetweenTwoTimestamps refactor * wip * wip * wip * wip * wip * wip * wip * Fixes * wip * wip * Fix InfoPopover button styling * wip * wip * wip * Merge branch 'rewrite' into new-calendar * wip * wip * wip * wip * Rename myform -> sendouform * wip * wip * wip * wip * wip * wip * wip * wip * wip * rename * fix test
7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
import type { RankedModeShort } from "./types";
|
|
|
|
export const modesShort = ["TW", "SZ", "TC", "RM", "CB"] as const;
|
|
export const rankedModesShort = modesShort.slice(1) as RankedModeShort[];
|
|
|
|
export const modesShortWithSpecial = [...modesShort, "TB", "SR"] as const;
|