UNPKG

@adyen/lume-vue3

Version:

Lume is a Vue data visualization component library, built with Typescript and D3.

12 lines 418 B
import { PropType, Ref } from 'vue'; import type { Options } from '@/types/options'; export declare const withOptions: <T = Options>() => { options: { type: PropType<T>; default: () => {}; }; }; export declare function useOptions<T extends Options = Options>(options: Ref<T>, defaultOptions?: T | Ref<T>): { allOptions: import("vue").ComputedRef<T>; }; //# sourceMappingURL=options.d.ts.map