Files
talk-pro/node_modules/astro/dist/runtime/server/render/template-depth.js

12 lines
298 B
JavaScript
Raw Normal View History

import { createRenderInstruction } from "./instruction.js";
function templateEnter(_result) {
return createRenderInstruction({ type: "template-enter" });
}
function templateExit(_result) {
return createRenderInstruction({ type: "template-exit" });
}
export {
templateEnter,
templateExit
};