2019-11-07 02:58:15 +00:00
|
|
|
// API
|
|
|
|
export { parse } from './parse'
|
|
|
|
export { compileTemplate } from './compileTemplate'
|
|
|
|
export { compileStyle, compileStyleAsync } from './compileStyle'
|
|
|
|
|
|
|
|
// Types
|
|
|
|
export {
|
|
|
|
SFCParseOptions,
|
|
|
|
SFCDescriptor,
|
|
|
|
SFCBlock,
|
|
|
|
SFCTemplateBlock,
|
|
|
|
SFCScriptBlock,
|
|
|
|
SFCStyleBlock
|
|
|
|
} from './parse'
|
2019-12-11 14:46:42 +00:00
|
|
|
export {
|
|
|
|
TemplateCompiler,
|
2019-12-13 16:24:09 +00:00
|
|
|
SFCTemplateCompileOptions,
|
|
|
|
SFCTemplateCompileResults
|
2019-12-11 14:46:42 +00:00
|
|
|
} from './compileTemplate'
|
2020-04-24 21:11:41 +00:00
|
|
|
export {
|
|
|
|
SFCStyleCompileOptions,
|
|
|
|
SFCAsyncStyleCompileOptions,
|
|
|
|
SFCStyleCompileResults
|
|
|
|
} from './compileStyle'
|
2019-12-23 00:44:21 +00:00
|
|
|
export {
|
|
|
|
CompilerOptions,
|
|
|
|
CompilerError,
|
|
|
|
generateCodeFrame
|
|
|
|
} from '@vue/compiler-core'
|