mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-18 08:00:53 +08:00

* chore: looper * refactor: merge logic * chore: comment * chore: image semantic * test: fix test case * chore: fix lint * chore: fix lint * chore: show the strcture * chore: desc update
28 lines
233 B
TypeScript
28 lines
233 B
TypeScript
export type ValidChar =
|
|
| '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';
|