Files
memecoin-botV2/.pnpm-store/v10/files/ae/1135e1039a6dba1eb4747d411ef1fd9a1a0490ecc1297ce1d4d4bd7e6daed87482ae0b309f41f273de12bc784a9286a439281280d4bed65d43d069ebca2e0f

8 lines
312 B
Plaintext

import type { TSESTree } from '@typescript-eslint/utils';
/**
* Yields all statement nodes in a block, including nested blocks.
*
* You can use it to find all return statements in a function body.
*/
export declare function walkStatements(body: readonly TSESTree.Statement[]): Generator<TSESTree.Statement>;