const log = {
counter: {
a: 1,
b: 2,
c: 3,
},
increment(entry: keyof typeof this.counter){
this.counter[entry]++;
}
};
function incrementLog(entry:keyof typeof log.counter){
log.counter[entry]++;
}
incrementLog('a'); // ok
incrementLog('d'); // error, must be 'a' | 'b' | 'c'
log.increment('a'); // ok
log.increment('d'); // no error
I want to enforce the argument type of increment
method to be keyof typeof log.counter
, which is 'a' | 'b' | 'c'
. I can achieve it in the standalone function, but it doesn't work in the increment
method: 'this' is not defined.
I've also tried log.counter
instead of this.counter
on the method definition, but that creates a 'circular initializer' which also doesn't work as intended.
I hope not to manually type the log
or manually type the counter
, because when I make changes to the object, I hope to only make changes in one place.