type long = string | number; type stringObj = { [index: string]: string; } type NumberObj = { [index: number]: any; }; const obj = { [‘account‘]: ‘testtest‘ } for (const o in obj) { console.log(obj[o]); }
标签:number script types scrip index type BE account ole