Files
talk-pro/node_modules/astro/dist/runtime/server/render/template-depth.js
2026-05-12 16:16:03 +08:00

12 lines
298 B
JavaScript

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