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.
34 lines
1007 B
34 lines
1007 B
2 years ago
|
import MagicString from 'magic-string';
|
||
|
import { ParserPlugin } from '@babel/parser';
|
||
|
import { Program } from '@babel/types';
|
||
|
import { SourceMap } from 'magic-string';
|
||
|
|
||
|
export declare interface RefTransformOptions {
|
||
|
filename?: string;
|
||
|
sourceMap?: boolean;
|
||
|
parserPlugins?: ParserPlugin[];
|
||
|
importHelpersFrom?: string;
|
||
|
}
|
||
|
|
||
|
export declare interface RefTransformResults {
|
||
|
code: string;
|
||
|
map: SourceMap | null;
|
||
|
rootRefs: string[];
|
||
|
importedHelpers: string[];
|
||
|
}
|
||
|
|
||
|
export declare function shouldTransform(src: string): boolean;
|
||
|
|
||
|
export declare function transform(src: string, { filename, sourceMap, parserPlugins, importHelpersFrom }?: RefTransformOptions): RefTransformResults;
|
||
|
|
||
|
export declare function transformAST(ast: Program, s: MagicString, offset?: number, knownRefs?: string[], knownProps?: Record<string, // public prop key
|
||
|
{
|
||
|
local: string;
|
||
|
default?: any;
|
||
|
}>): {
|
||
|
rootRefs: string[];
|
||
|
importedHelpers: string[];
|
||
|
};
|
||
|
|
||
|
export { }
|