mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
enum BlockMode {
|
|
/* store rendered html into blocks */
|
|
OUTPUT,
|
|
/* output rendered html directly */
|
|
STORE
|
|
}
|
|
|
|
export default BlockMode
|