UNPKG

@shopware-ag/meteor-component-library

Version:

The meteor component library is a Vue component library developed by Shopware. It is based on the [Meteor Design System](https://shopware.design/).

15 lines (13 loc) 572 B
import type { InjectionKey } from "vue"; export const MtSelectResultAddActiveItemListener = Symbol() as InjectionKey< (listener: (index: number) => void) => void >; export const MtSelectResultRemoveActiveItemListener = Symbol() as InjectionKey< (listener: (index: number) => void) => void >; export const MtSelectResultAddItemSelectByKeyboardListener = Symbol() as InjectionKey< (listener: (index: number) => void) => void >; export const MtSelectResultRemoveItemSelectByKeyboardListener = Symbol() as InjectionKey< (listener: (index: number) => void) => void >;