UNPKG

@telcomdataperu/zeus-vue-model-manager

Version:

Vue 3 Model Manager for Microfrontends with OpenUI5-style API - Part of ZEUS Platform by TelcomdataPeru

10 lines (9 loc) 510 B
export interface UseModelsOptions { scope?: string; fallbackSearch?: boolean; deep?: boolean; } export declare function useModels(modelNames: string[], options?: UseModelsOptions): Record<string, any>; export declare function useModelsRaw(modelNames: string[], options?: UseModelsOptions): Record<string, any>; export declare function useModelsFromScope(scope: string, modelNames: string[]): Record<string, any>; export declare function useModelsShallow(modelNames: string[]): Record<string, any>;