mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2025-01-15 07:21:05 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
|
import { ImportDefaultSpecifier } from '@babel/types';
|
||
|
import { ImportNamespaceSpecifier } from '@babel/types';
|
||
|
import { ImportSpecifier } from '@babel/types';
|
||
|
import MagicString from 'magic-string';
|
||
|
import { ParserPlugin } from '@babel/parser';
|
||
|
import { Program } from '@babel/types';
|
||
|
import { SourceMap } from 'magic-string';
|
||
|
|
||
|
export declare interface ImportBinding {
|
||
|
local: string;
|
||
|
imported: string;
|
||
|
source: string;
|
||
|
specifier: ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier;
|
||
|
}
|
||
|
|
||
|
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 { }
|