mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
29 lines
534 B
TypeScript
29 lines
534 B
TypeScript
|
|
import { parse, SFCBlock, SFCCustomBlock, SFCDescriptor } from './parse'
|
||
|
|
|
||
|
|
import {
|
||
|
|
compileTemplate,
|
||
|
|
TemplateCompileOptions,
|
||
|
|
TemplateCompileResult
|
||
|
|
} from './compileTemplate'
|
||
|
|
|
||
|
|
import {
|
||
|
|
compileStyle,
|
||
|
|
compileStyleAsync,
|
||
|
|
StyleCompileOptions,
|
||
|
|
StyleCompileResults
|
||
|
|
} from './compileStyle'
|
||
|
|
|
||
|
|
// API
|
||
|
|
export { parse, compileTemplate, compileStyle, compileStyleAsync }
|
||
|
|
|
||
|
|
// types
|
||
|
|
export {
|
||
|
|
SFCBlock,
|
||
|
|
SFCCustomBlock,
|
||
|
|
SFCDescriptor,
|
||
|
|
TemplateCompileOptions,
|
||
|
|
TemplateCompileResult,
|
||
|
|
StyleCompileOptions,
|
||
|
|
StyleCompileResults
|
||
|
|
}
|