marko
Version:
Optimized runtime for Marko templates.
15 lines (14 loc) • 389 B
TypeScript
import { type Tag } from "@marko/compiler/babel-utils";
import { type Binding } from "../util/references";
interface DynamicStyle {
names: string[];
binding: Binding;
}
declare module "@marko/compiler/dist/types" {
interface NodeExtra {
styleImportPath?: string | null;
dynamicStyle?: DynamicStyle;
}
}
declare const _default: Tag;
export default _default;