routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import type { ComputedRef, InjectionKey } from 'vue';
|
||||
import type { ListItemSlot } from '../VList/VListItem.js';
|
||||
export interface TreeViewProvide {
|
||||
visibleIds: ComputedRef<Set<unknown> | null>;
|
||||
}
|
||||
export type ToggleListItemSlot = ListItemSlot & {
|
||||
props: {
|
||||
onClick: (e: PointerEvent) => void;
|
||||
};
|
||||
};
|
||||
export declare const VTreeviewSymbol: InjectionKey<TreeViewProvide>;
|
||||
Reference in New Issue
Block a user