EASYAIuniappNewUI/node_modules/@dcloudio/uni-mp-vite/dist/plugins/entry.d.ts
2025-02-08 18:50:38 +08:00

10 lines
608 B
TypeScript

import type { Plugin } from 'vite';
import type { UniMiniProgramPluginOptions } from '../plugin';
export declare function virtualPagePath(filepath: string): string;
export declare function virtualComponentPath(filepath: string): string;
export declare function parseVirtualPagePath(uniPageUrl: string): string;
export declare function parseVirtualComponentPath(uniComponentUrl: string): string;
export declare function isUniPageUrl(id: string): boolean;
export declare function isUniComponentUrl(id: string): boolean;
export declare function uniEntryPlugin({ global, }: UniMiniProgramPluginOptions): Plugin;