@nodesecure/js-x-ray
Version:
JavaScript AST XRay analysis
13 lines • 473 B
TypeScript
import type { ESTree } from "meriyah";
export interface GetVariableDeclarationIdentifiersOptions {
/**
* Prefix to add to the variable name.
* @default void
*/
prefix?: string;
}
export declare function getVariableDeclarationIdentifiers(node: ESTree.Node, options?: GetVariableDeclarationIdentifiersOptions): IterableIterator<{
name: string;
assignmentId: ESTree.Identifier;
}>;
//# sourceMappingURL=getVariableDeclarationIdentifiers.d.ts.map