mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
121 lines
2.7 KiB
TypeScript
121 lines
2.7 KiB
TypeScript
export { type CompileOptions, type CompileResult, CompilerError, compile } from './compile';
|
|
export {
|
|
type CompilerAsset,
|
|
type CompilerConfig,
|
|
type CompilerContext,
|
|
type CompilerDiagnostic,
|
|
type CompilerInput,
|
|
type CompilerOutputOptions,
|
|
type CompilerPipelineStep,
|
|
type CompilerPlugin,
|
|
type CompilerPluginEnforce,
|
|
type CompilerTarget,
|
|
type CompilerTransform,
|
|
defineConfig,
|
|
} from './config';
|
|
export {
|
|
compilerDiagnosticToJsonEvent,
|
|
type DiagnosticFormat,
|
|
type DiagnosticJsonEvent,
|
|
type DiagnosticJsonFrameLine,
|
|
type DiagnosticLocation,
|
|
type DiagnosticSummaryJsonEvent,
|
|
diagnosticLocationFromNode,
|
|
diagnosticSummaryToJsonEvent,
|
|
type FormatDiagnosticOptions,
|
|
fatalDiagnosticFromError,
|
|
formatCompilerDiagnostic,
|
|
formatCompilerDiagnosticJsonLine,
|
|
formatDiagnosticSummaryJsonLine,
|
|
LogLevel,
|
|
type LogLevelName,
|
|
mapLogLevelStringToNumber,
|
|
mapLogLevelToString,
|
|
shouldUseColor,
|
|
withDiagnosticSource,
|
|
} from './diagnostics';
|
|
export {
|
|
type AddPropImportRef,
|
|
type AddPropOptions,
|
|
accessPath,
|
|
addProp,
|
|
anyTag,
|
|
byTag,
|
|
type ChildAsPropOptions,
|
|
childAsProp,
|
|
hasChild,
|
|
type JsxChildReplacement,
|
|
type JsxElementLike,
|
|
type JsxTargetOptions,
|
|
jsx,
|
|
jsxExpression,
|
|
type Matcher,
|
|
propertyAccess,
|
|
type ReplaceJsxChildOptions,
|
|
type ReplaceOptions,
|
|
readStringAttribute,
|
|
replace,
|
|
replaceJsxChild,
|
|
tagName,
|
|
type WrapOptions,
|
|
wrap,
|
|
} from './jsx';
|
|
export {
|
|
type CompileProjectOptions,
|
|
type CompileProjectResult,
|
|
compileProject,
|
|
type ProjectOutputFile,
|
|
} from './project';
|
|
export {
|
|
type AnalyzeStylesOptions,
|
|
analyzeStyles,
|
|
type StyleAttributeInfo,
|
|
type StyleSegment,
|
|
type StyleVisitor,
|
|
type StyleVisitorResult,
|
|
} from './styles';
|
|
export {
|
|
type CreateHelpers,
|
|
type EditHelpers,
|
|
type FunctionDeclarationContext,
|
|
type FunctionDeclarationEdit,
|
|
type FunctionDeclarationEditOptions,
|
|
type FunctionPropSpec,
|
|
type ImportReference,
|
|
type InterfaceDeclarationContext,
|
|
type InterfaceDeclarationEdit,
|
|
type InterfaceDeclarationEditOptions,
|
|
type InterfacePropertyContext,
|
|
type InterfacePropertyEdit,
|
|
type InterfacePropertyEditOptions,
|
|
type JsxElementContext,
|
|
type JsxElementEdit,
|
|
type JsxElementEditOptions,
|
|
type JsxPropContext,
|
|
type JsxPropEditOptions,
|
|
type JsxPropsSpec,
|
|
type JsxPropValue,
|
|
type MatchHelpers,
|
|
type MatchPredicate,
|
|
type RefHelpers,
|
|
type TransformCallback,
|
|
type TransformHelpers,
|
|
type TransformOptions,
|
|
type TransformStep,
|
|
transform,
|
|
type ValueOnlyIfOptions,
|
|
type ValueReference,
|
|
} from './transform';
|
|
export {
|
|
type AddImportContext,
|
|
type AddImportRef,
|
|
addNamedImport,
|
|
dropUnusedImports,
|
|
dropUnusedLocals,
|
|
type ImportRef,
|
|
type ImportRewriteOptions,
|
|
type ImportRule,
|
|
resolveRelative,
|
|
transformImports,
|
|
} from './transforms';
|