UNPKG

@nodesecure/js-x-ray

Version:
15 lines 655 B
import type { ESTree } from "meriyah"; import { type DefaultOptions } from "../types.ts"; export interface ArrayExpressionToStringOptions extends DefaultOptions { /** * When enabled, resolves the char code of the literal value. * * @default true * @example * [65, 66] // => ['A', 'B'] */ resolveCharCode?: boolean; } export declare function arrayExpressionToString(node: ESTree.Node | null, options?: ArrayExpressionToStringOptions): IterableIterator<string>; export declare function joinArrayExpression(node: ESTree.Node | null, options?: DefaultOptions): string | null; //# sourceMappingURL=arrayExpression.d.ts.map