<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Hi there, I'd like allow explicit numbers in interfaces, not just `number` type:  ```ts interface Model { logLevel: 0 | 1 | 2 | 3 | 4 | 5; } ```