@szjy/workflow 0.1.11 → 0.1.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.mjs +256 -253
- package/dist/index.umd.js +4 -4
- package/dist/packages/components/Workflow/slots.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -7,5 +7,5 @@ type SlotNames = keyof typeof SLOT_NAMES;
|
|
7
7
|
export declare const slotKeyName: (name: SlotNames) => string;
|
8
8
|
export declare const initSlotRegistry: () => void;
|
9
9
|
export declare const isSlotExist: (name: SlotNames) => boolean;
|
10
|
-
export declare const getSlotByName: (name: SlotNames) =>
|
10
|
+
export declare const getSlotByName: (name: SlotNames) => import("vue").Raw<object> | null;
|
11
11
|
export {};
|