uni-ticket-system/node_modules/@dcloudio/uni-mp-vite/dist/plugins/entry.d.ts

10 lines
598 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
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;