interface Store {
states?: States
actions?: Actions & ThisType>
}
function typed(
store: Store
): Store {
return store
}
typed({
states: {
a: 1,
},
actions: {
t() {
this.a = 2
// Type error here when `--noImplicitThis` enabled
this.t = () => { }
}
}
})