UNPKG

@shopware-ag/meteor-admin-sdk

Version:

The Meteor SDK for the Shopware Administration.

9 lines (8 loc) 237 B
import type { Ref, UnwrapRef } from 'vue'; export declare function useDataset<TData>(id: string, options?: { selectors?: string[]; }): { data: Ref<UnwrapRef<TData> | null>; isReady: Ref<boolean>; ready: Promise<void>; };