Skip to content

Commit

Permalink
added more module prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
norech committed Jan 24, 2022
1 parent a61638b commit ff7353f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type LowercaseAlphabetLetter = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z";
export type UppercaseAlphabetLetter = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z";

export type ModulePrefix = "B" | "M" | "C" | "G";
export type ModulePrefix = "B" | "M" | "C" | "G" | "W" | "T";

export type YearLiteral = `${number}`;
export type MonthLiteral = `${number}`;
Expand Down

0 comments on commit ff7353f

Please sign in to comment.