Files
fractional-insight-site/node_modules/astro/dist/runtime/server/render/template-depth.js

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
};