8 lines
364 B
Plaintext
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;
|