in type i can write both ways:
type someType = {[key: string]: any}type someType = Record<string, any>I want to do the same with interface bu instead of: interface someInter {[key: string]: any} i want to be able to do something like: interface someInter Record<string, any>..
Is it possible at all? in any way?