Files
memecoin-botV2/.pnpm-store/v10/files/64/6a1ca7e3abc919211f2501c7b8628f886c87c993ec4d3f790e31ca03eb25c172c1c58cc3d013390fad13528a96f33b2867e3b33c85cd6bfb7f13baf76d6d75

8 lines
364 B
Plaintext

import type { TSESTree } from '@typescript-eslint/utils';
/**
* Tests if a node appears at the beginning of an ancestor ExpressionStatement node.
* @param node The node to check.
* @returns Whether the node appears at the beginning of an ancestor ExpressionStatement node.
*/
export declare function isStartOfExpressionStatement(node: TSESTree.Node): boolean;