UNPKG

@esmx/core

Version:

A high-performance microfrontend framework supporting Vue, React, Preact, Solid, and Svelte with SSR and Module Federation capabilities.

4 lines (3 loc) 686 B
export type ProjectPath = './' | 'dist' | 'dist/index.mjs' | 'dist/package.json' | 'dist/client' | 'dist/client/manifest.json' | 'dist/client/js' | 'dist/client/css' | 'dist/client/images' | 'dist/client/media' | 'dist/client/fonts' | 'dist/client/workers' | 'dist/client/importmap' | 'dist/client/versions/latest.tgz' | 'dist/server' | 'dist/server/js' | 'dist/server/manifest.json' | 'dist/node' | 'dist/node/js' | 'src' | 'src/entry.node.ts' | 'src/entry.client.ts' | 'src/entry.server.ts' | 'package.json'; export declare function resolvePath(root: string, projectPath: ProjectPath, ...args: string[]): string; export declare function resolveImportPath(...paths: string[]): string;