I failed to find information on this elsewhere. I want to create a type that has both defined strings or allows any type of string to be used, but giving auto suggestion for the defined entries.
Right now if I add the // | string at the end, it sort of takes over, and doesn't give any auto suggestion.
// if I add this it stops suggestions
type DefinedLetters = 'A' | 'B' | 'C' // | string
const Letter: DefinedLetters = '' // Should suggest A, B or C, but also allow D, E, F, etc.