yuyeon 0.0.48 → 0.0.49

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.
@@ -1,4 +1,4 @@
1
- import { PropType } from 'vue';
1
+ import { PropType, SlotsType } from 'vue';
2
2
  export declare const pressYTreeViewNodeProps: <Defaults extends {
3
3
  items?: unknown;
4
4
  itemKey?: unknown;
@@ -192,5 +192,10 @@ export declare const YTreeViewNode: import("vue").DefineComponent<{
192
192
  itemText: string;
193
193
  itemChildren: string | boolean;
194
194
  level: number;
195
- }, {}>;
195
+ }, SlotsType<{
196
+ default: any;
197
+ 'expand-icon': any;
198
+ leading: any;
199
+ trailing: any;
200
+ }>>;
196
201
  export type YTreeNode = InstanceType<typeof YTreeViewNode>;