2019-11-06 21:58:15 -05: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 09:46:42 -05:00
|
|
|
export {
|
|
|
|
TemplateCompiler,
|
2019-12-13 11:24:09 -05:00
|
|
|
SFCTemplateCompileOptions,
|
|
|
|
SFCTemplateCompileResults
|
2019-12-11 09:46:42 -05:00
|
|
|
} from './compileTemplate'
|
2020-04-24 17:11:41 -04:00
|
|
|
export {
|
|
|
|
SFCStyleCompileOptions,
|
|
|
|
SFCAsyncStyleCompileOptions,
|
|
|
|
SFCStyleCompileResults
|
|
|
|
} from './compileStyle'
|
2019-12-22 19:44:21 -05:00
|
|
|
export {
|
|
|
|
CompilerOptions,
|
|
|
|
CompilerError,
|
|
|
|
generateCodeFrame
|
|
|
|
} from '@vue/compiler-core'
|