UNPKG

vue3-photo-preview

Version:
10 lines (9 loc) 305 B
import { Ref } from 'vue'; import { ItemType, UpdateItemType, RemoveItemType } from '../types'; type useItemsReturn = { items: Ref<ItemType[]>; updateItem: UpdateItemType; removeItem: RemoveItemType; }; export default function useItems(index: Ref<number>): useItemsReturn; export {};