| 12345678910111213141516 |
- import type { Plugin } from 'vite';
- interface UniUTSPluginOptions {
- x?: boolean;
- extApis?: Record<string, [string, string]>;
- isSingleThread?: boolean;
- }
- export declare const utsPlugins: Set<string>;
- export declare function uniUTSUniModulesPlugin(options?: UniUTSPluginOptions): Plugin;
- export declare function buildUniExtApiProviders(): Promise<void>;
- export declare function resolveExtApiProvider(pkg: Record<string, any>): {
- name?: string | undefined;
- plugin?: string | undefined;
- service: string;
- servicePlugin: string;
- } | undefined;
- export {};
|