@rugal.tu/vuemodel3 1.3.4 → 1.3.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rugal.tu/vuemodel3",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/VueModel.d.ts CHANGED
@@ -170,16 +170,17 @@ type AddPropertyType = {
170
170
  type AddFileStoreOption = {
171
171
  Multi?: boolean;
172
172
  };
173
- type AddSubApiNotifyArg = {
173
+ export type AddSubApiNotifyArg = {
174
174
  ApiStore: ApiStoreValue;
175
175
  PropertyName: string;
176
176
  Value: any;
177
177
  };
178
- type AddSubApiNotify = ((Arg: AddSubApiNotifyArg) => void);
179
- type AddSubApiOption = {
178
+ export type AddSubApiNotify = ((Arg: AddSubApiNotifyArg) => void);
179
+ export type AddSubApiOption = {
180
180
  PropertyName?: string;
181
181
  NotifyEvent: AddSubApiNotify;
182
182
  };
183
+ export type AddSubApiStore = AddSubApiOption;
183
184
  export declare class ApiStore extends FuncBase {
184
185
  #private;
185
186
  constructor();
package/src/VueModel.ts CHANGED
@@ -652,17 +652,17 @@ type AddFileStoreOption = {
652
652
  Multi?: boolean;
653
653
  }
654
654
 
655
- type AddSubApiNotifyArg = {
655
+ export type AddSubApiNotifyArg = {
656
656
  ApiStore: ApiStoreValue,
657
657
  PropertyName: string,
658
658
  Value: any,
659
659
  };
660
- type AddSubApiNotify = ((Arg: AddSubApiNotifyArg) => void);
661
- type AddSubApiOption = {
660
+ export type AddSubApiNotify = ((Arg: AddSubApiNotifyArg) => void);
661
+ export type AddSubApiOption = {
662
662
  PropertyName?: string,
663
663
  NotifyEvent: AddSubApiNotify,
664
664
  };
665
- type AddSubApiStore = AddSubApiOption;
665
+ export type AddSubApiStore = AddSubApiOption;
666
666
  //#endregion
667
667
  export class ApiStore extends FuncBase {
668
668