View vue-no-reactive.ts
/* tslint:disable */ | |
export function NoObserver<T>(target: T): T { | |
if (target === null || typeof target === 'undefined') { | |
return target; | |
} | |
(target as any)._isVue = true; | |
return target; | |
} |
View vuex-module-decorators.d.ts
import { Module, VuexModule, Mutation, Action } from 'vuex-module-decorators' | |
type ModulePreserveState = Module | |
export { Module, ModulePreserveState, VuexModule, Mutation, Action } |