@maverick-js/compiler
Version:
Maverick toolchain including the analyzer and compiler.
8 lines (7 loc) • 311 B
TypeScript
import ts from 'typescript';
import type { AST } from '../transformer/ast';
export declare function hasChildType(node: ts.Node, check: (child: ts.Node) => boolean): any;
export declare function resolveExpressionChildren(expression: ts.Expression): {
observable: boolean;
children: AST[] | undefined;
};