Skip to content

Commit 514dd26

Browse files
committed
built source files
1 parent b6058af commit 514dd26

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+2139
-0
lines changed

dist/actions.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { ActionDescriptor, ActionOption, VuexModule } from "./interfaces";
2+
import { ActionContext } from 'vuex';
3+
export declare const internalAction: (state: any, context: any) => undefined;
4+
export declare function action(options?: ActionOption): (target: any, key: string, descriptor: ActionDescriptor) => any;
5+
export declare function action(target: any, key: string, descriptor: ActionDescriptor): any;
6+
export declare function getRawActionContext<T extends VuexModule, R>(thisArg: ThisType<T>): ActionContext<T, R>;

dist/actions.js

Lines changed: 52 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/actions.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/getters.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare const internalGetter: (state: any, context: any) => (field: string) => any;

dist/getters.js

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/getters.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/getters.legacy.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare const getter: (target: any, propertyKey: string) => void;

dist/getters.legacy.js

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/getters.legacy.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export { extractVuexModule, createModule } from "./module";
2+
export { createSubModule } from "./submodule";
3+
export { createProxy, clearProxyCache } from "./proxy";
4+
export { action, getRawActionContext } from "./actions";
5+
export { mutation } from "./mutations";
6+
export { Module, LegacyVuexModule as VuexModule } from "./module.legacy";
7+
export { getter } from "./getters.legacy";

0 commit comments

Comments
 (0)