@witlink/workflow 0.0.1

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.
@@ -0,0 +1,42 @@
1
+ import { App } from 'vue';
2
+ import { ComponentOptionsMixin } from 'vue';
3
+ import { ComponentProvideOptions } from 'vue';
4
+ import { DefineComponent } from 'vue';
5
+ import { PublicProps } from 'vue';
6
+
7
+ declare const _default: {
8
+ install: typeof install;
9
+ };
10
+ export default _default;
11
+
12
+ declare function install(app: App, options: WorkflowOptions): void;
13
+
14
+ export declare function setLang(lang: string): void;
15
+
16
+ export declare function setTimezone(timezone: string): void;
17
+
18
+ export declare const WfManagePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
19
+
20
+ export declare interface WorkflowOptions {
21
+ /**
22
+ * 宿主i18n对象
23
+ */
24
+ i18n: any;
25
+ /**
26
+ * 宿主pinia对象
27
+ */
28
+ pinia?: any;
29
+ /**
30
+ * 默认pro__Access-Token
31
+ */
32
+ tokenKey?: string;
33
+ /**
34
+ * 默认Etc/GMT+8
35
+ */
36
+ timezone?: string;
37
+ theme?: {
38
+ colorPrimary: string;
39
+ } & Record<string, string>;
40
+ }
41
+
42
+ export { }