You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
417 B

import type { Ref } from 'vue';
export type CollectionItem<T = Record<string, any>> = {
ref: HTMLElement | null;
} & T;
export type ElCollectionInjectionContext = {
itemMap: Map<HTMLElement, CollectionItem>;
getItems: <T>() => CollectionItem<T>[];
collectionRef: Ref<HTMLElement | undefined>;
};
export type ElCollectionItemInjectionContext = {
collectionItemRef: Ref<HTMLElement | undefined>;
};