frontend/.pnpm-store/v3/files/c5/e3c721fd64cd438f468bdf476553dd184dbc8afd66c82d84fad0505095f0231dda2af0cc2a8cafc4618189efefa8a5d634361fa60d220726e1a37a5d7d9d03

6 lines
322 B
Plaintext

export type UpperCaseCharacters = '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 WordSeparators = '-' | '_' | ' ';
export type StringDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';