在 TypeScript 中实现类似于 Vue Component Options 的类型检查
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 = () => { }
    }
  }
})

Powered by Sairin