marko
Version:
Optimized runtime for Marko templates.
11 lines (10 loc) • 318 B
TypeScript
import { type Tag } from "@marko/compiler/babel-utils";
import { type Binding } from "../util/references";
declare const kNodeBinding: unique symbol;
declare module "@marko/compiler/dist/types" {
interface NodeExtra {
[kNodeBinding]?: Binding;
}
}
declare const _default: Tag;
export default _default;