Typscript Dynamic Key Value -Objekt

interface LooseObject {
    [key: string]: any
}

var obj: LooseObject = {};
Clear Crab