From ff7353f6e361c73bbb3ba0509546ffa18528832e Mon Sep 17 00:00:00 2001 From: Alexis Cheron Date: Mon, 24 Jan 2022 18:00:00 +0400 Subject: [PATCH] added more module prefixes --- src/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.ts b/src/common.ts index f5231a5..11d5cee 100644 --- a/src/common.ts +++ b/src/common.ts @@ -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}`;