From e78f250007fbe7bbd92213e36b0822d5df68ab99 Mon Sep 17 00:00:00 2001 From: Thomas Stapleton Date: Fri, 15 Jun 2018 11:27:03 -0700 Subject: [PATCH] fix: add w to alphabet enums (#28) --- src/alphabet.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/alphabet.ts b/src/alphabet.ts index d5a8d8b..2935ab4 100644 --- a/src/alphabet.ts +++ b/src/alphabet.ts @@ -21,6 +21,7 @@ export type AlphabetUppercase = | 'T' | 'U' | 'V' + | 'W' | 'X' | 'Y' | 'Z' @@ -47,6 +48,7 @@ export type AlphabetLowercase = | 't' | 'u' | 'v' + | 'w' | 'x' | 'y' | 'z'