mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01: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
|
|
}
|