You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
716 B
11 lines
716 B
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 parseComponentStyleIsolation(content: string): string | undefined;
|
|
export declare function uniEntryPlugin({ global, template, style, }: UniMiniProgramPluginOptions): Plugin;
|