Hi!
Let's say that I have this code:
interface Greeter {
hello: 'world'
}
function hello() {
const first: Greeter = {
hello: 'world'
};
const obj = {
hello: 'world'
};
const second: Greeter = obj;
}
For the first object the compiler can infer type of hello as a string literal type and outputs no errors. However, for the second object can't infer this, although obj is a constant object, and throws an error.
It would be nice to have automatic inference here. For example, in Flow types are inferred here automatically and the same code passes type checks without errors.
Addition: specifying the string type literal explicitly helps:
const obj = {
hello: 'world' as 'world'
}
but makes the code look verbose.
My suggestion meets these guidelines: