From d6be3405b35f5c3b4b94e16f4cccd605e090dd3f Mon Sep 17 00:00:00 2001 From: Evan You Date: Sun, 12 Dec 2021 11:42:50 +0800 Subject: [PATCH] types(compiler-sfc): export additional types --- packages/compiler-sfc/src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/compiler-sfc/src/index.ts b/packages/compiler-sfc/src/index.ts index 245aa461..bf89c5de 100644 --- a/packages/compiler-sfc/src/index.ts +++ b/packages/compiler-sfc/src/index.ts @@ -33,7 +33,8 @@ export { SFCBlock, SFCTemplateBlock, SFCScriptBlock, - SFCStyleBlock + SFCStyleBlock, + SFCParseResult } from './parse' export { TemplateCompiler, @@ -46,6 +47,7 @@ export { SFCStyleCompileResults } from './compileStyle' export { SFCScriptCompileOptions } from './compileScript' +export { AssetURLOptions, AssetURLTagConfig } from './templateTransformAssetUrl' export { CompilerOptions, CompilerError,