UNPKG

@omnia/tooling-vue

Version:

Used to bundle and serve manifests web component that build on Vue framework.

15 lines (14 loc) 578 B
import { LoadableBundleManifest } from '@omnia/fx-models'; export interface OmniaManifestReference { isVendor: boolean; serviceId: string; resourceId: string; name: string; content: Record<string, { id: string; }>; } export declare function getExternalManifestReferences(): OmniaManifestReference[]; export declare function getInternalManifestReferences(): OmniaManifestReference[]; export declare function getResourceIdFromEntryKey(key: string): string; export declare function getEntryKeyFromManifest(manifest: LoadableBundleManifest): string;