9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
import type { Plugin } from 'vite';
|
|
interface UniUTSPluginOptions {
|
|
x?: boolean;
|
|
extApis?: Record<string, [string, string]>;
|
|
}
|
|
export declare const utsPlugins: Set<string>;
|
|
export declare function uniUTSAppPlugin(options?: UniUTSPluginOptions): Plugin;
|
|
export {};
|