@Action, @Mutation 등으로 지정된 변수의 타입
해당 타입을 any로 지정하거나, 'ActionMethod'; 를 지정해 주시면 됩니다. import { ActionMethod, MutationMethod } from "vuex"; export default class App extends Vue { @Action readonly increase!: ActionMethod; @Action readonly decrease!: ActionMethod; @Mutation readonly setCount!: MutationMethod; }