uni-ticket-system/node_modules/@dcloudio/uni-mp-vite/dist/plugins/entry.d.ts
2023-12-05 10:11:10 +08:00

10 lines
598 B
TypeScript

import { Plugin } from 'vite';
import { 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;