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.
13 lines
360 B
13 lines
360 B
import type { PluginContext } from 'rollup';
|
|
import { type ImportSpecifier } from 'es-module-lexer';
|
|
/**
|
|
* 暂时没用
|
|
* @param source
|
|
* @param importer
|
|
* @param resolve
|
|
* @returns
|
|
*/
|
|
export declare function findVueComponentImports(source: string, importer: string, resolve: PluginContext['resolve']): Promise<(ImportSpecifier & {
|
|
i: string;
|
|
})[]>;
|