UNPKG

marko

Version:

Optimized runtime for Marko templates.

9 lines (8 loc) 1.01 kB
import type { types as t } from "@marko/compiler"; export type MarkoExprRootPath = t.NodePath<t.MarkoTag | t.MarkoTagBody | t.MarkoAttribute | t.MarkoSpreadAttribute | t.MarkoScriptlet | t.MarkoPlaceholder | t.ExportNamedDeclaration | t.ExportDefaultDeclaration>; export declare function getMarkoRoot(path: t.NodePath<t.Node>): MarkoExprRootPath | null; export declare function getExprRoot(path: t.NodePath<t.Node>): t.NodePath<t.Node>; export declare function getFnRoot(path: t.NodePath<t.Node>): t.NodePath<t.ArrowFunctionExpression | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMember> | undefined; export declare function getFnParent(path: t.NodePath<t.Node>): t.NodePath<t.ArrowFunctionExpression | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMember> | undefined; export declare function getDeclarationRoot(path: t.NodePath<t.Node>): t.NodePath<t.FunctionDeclaration | t.VariableDeclaration> | undefined; export declare function isMarko(path: t.NodePath<any>): path is MarkoExprRootPath;