I have this object:
const theme = {}
This object is being filled by a function, this function adds a property to this object whenever it's called, the key it sets is a random number as a string, so "1", "31" and so on, and the value it sets is a string.
I was looking for something like this in TypeScript:
interface Theme {
string: string
}
const theme: Theme = {}
const theFunction(){
const key = `${Math.floor(Math.random() * 1000)}`;
const value = "value";
theme[key] = value;
}
The theFunction might get called at any unknown time,
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…