interface Foo {
bar: {};
[key: string]: string;
}
// Property 'bar' of type '{}' is not assignable to string index type 'string'.
I'm trying to make property bar
is Object
and any other properties is string, how to define this without any
?