@magnetarjs/plugin-vue3
Version:
Magnetar plugin vue3
10 lines (9 loc) • 376 B
TypeScript
import type { PluginFetchAction } from '@magnetarjs/types';
import { Vue3StoreOptions } from '../CreatePlugin.js';
export declare function fetchActionFactory(data: {
[collectionPath: string]: Map<string, {
[key: string]: unknown;
}>;
}, exists: {
[docPath: string]: undefined | 'error' | boolean;
}, vue3StoreOptions: Vue3StoreOptions): PluginFetchAction;