UNPKG

@nodesecure/js-x-ray

Version:
13 lines 473 B
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