@partex/one-core 2.1.5 → 2.1.7

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.
@@ -15,7 +15,7 @@ interface Model {
15
15
  jobName: string;
16
16
  jobStatus: 0 | 1 | 2;
17
17
  }
18
- export declare const downloadSubmit: (params: Params) => Promise<void>;
18
+ export declare const downloadSubmit: (params: Params, url?: string) => Promise<void>;
19
19
  export declare const downloadList: (params: Params) => Promise<PageRecords<Model[]>>;
20
20
  export declare const downloadSteam: (url: string, data?: {}) => Promise<Blob>;
21
21
  export {};
@@ -19,6 +19,10 @@ declare const _default: DefineComponent<{
19
19
  file: string;
20
20
  };
21
21
  };
22
+ url: {
23
+ type: PropType<string>;
24
+ default: undefined;
25
+ };
22
26
  }, {
23
27
  modal: Ref<boolean>;
24
28
  columns: Ref<any>;
@@ -89,6 +93,10 @@ declare const _default: DefineComponent<{
89
93
  file: string;
90
94
  };
91
95
  };
96
+ url: {
97
+ type: PropType<string>;
98
+ default: undefined;
99
+ };
92
100
  }>> & {
93
101
  "onUpdate:show"?: ((...args: any[]) => any) | undefined;
94
102
  }, {
@@ -99,5 +107,6 @@ declare const _default: DefineComponent<{
99
107
  steam?: boolean | undefined;
100
108
  };
101
109
  show: boolean;
110
+ url: string;
102
111
  }, {}>;
103
112
  export default _default;