2019-11-07 10:58:15 +08: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 22:46:42 +08:00
|
|
|
export {
|
|
|
|
TemplateCompiler,
|
2019-12-14 00:24:09 +08:00
|
|
|
SFCTemplateCompileOptions,
|
|
|
|
SFCTemplateCompileResults
|
2019-12-11 22:46:42 +08:00
|
|
|
} from './compileTemplate'
|
2019-12-14 00:24:09 +08:00
|
|
|
export { SFCStyleCompileOptions, SFCStyleCompileResults } from './compileStyle'
|
2019-12-13 00:44:00 +08:00
|
|
|
export { CompilerOptions, generateCodeFrame } from '@vue/compiler-core'
|