@rugal.tu/vuemodel3 1.5.5 → 1.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/VueModel.d.ts +1 -1
- package/src/VueModel.ts +1 -1
package/package.json
CHANGED
package/src/VueModel.d.ts
CHANGED
|
@@ -281,7 +281,7 @@ export declare class VueStore extends ApiStore {
|
|
|
281
281
|
ForceUpdate(): this;
|
|
282
282
|
Refs(RefName: PathType): any;
|
|
283
283
|
}
|
|
284
|
-
type UsingFunctionType = ((
|
|
284
|
+
type UsingFunctionType = ((path: PathType, node: QueryNode, nodes?: QueryNode[]) => void);
|
|
285
285
|
type CommandOption = {
|
|
286
286
|
CommandKey?: string;
|
|
287
287
|
Target: PathType | Function;
|
package/src/VueModel.ts
CHANGED
|
@@ -1482,7 +1482,7 @@ export class VueStore extends ApiStore {
|
|
|
1482
1482
|
}
|
|
1483
1483
|
|
|
1484
1484
|
//#region VueCommand Data Type
|
|
1485
|
-
type UsingFunctionType = ((
|
|
1485
|
+
type UsingFunctionType = ((path: PathType, node: QueryNode, nodes?: QueryNode[]) => void);
|
|
1486
1486
|
type CommandOption = {
|
|
1487
1487
|
CommandKey?: string,
|
|
1488
1488
|
Target: PathType | Function,
|