File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { EngineOptions , ObjectType } from './types'
22import { Engine } from './engine'
33
4- export * from './compiler'
5- export * from './config'
64export * from './engine'
7- export * from './out-script'
8- export * from './safe'
9- export * from './source-map'
10- export * from './tags'
115export type * from './types'
12- export * from './utils'
136
147export async function render ( template : string , data : ObjectType , options ?: EngineOptions ) {
158 return new Engine ( options ) . render ( template , data )
Original file line number Diff line number Diff line change 11import type { EngineOptions } from '../src/types'
2- import { Compiler } from '../src'
2+ import { Compiler } from '../src/compiler '
33import { defaultOptions , Engine } from '../src/engine'
44import { Tokenizer } from '../src/tokenizer'
55
You can’t perform that action at this time.
0 commit comments