Item.d.ts 196 B

123456
  1. import type { FunctionalComponent } from 'vue';
  2. export interface ItemProps {
  3. setRef: (element: HTMLElement) => void;
  4. }
  5. declare const Item: FunctionalComponent<ItemProps>;
  6. export default Item;