Sha256: 1ccfc3e338b6df34323690f8e9c7a8fec26a3a71bfdd6422fc101cb47dc3b69b
Contents?: true
Size: 483 Bytes
Versions: 26
Compression:
Stored size: 483 Bytes
Contents
import type { Node, Identifier } from "estree"; import type { TokenStore } from "./token-store"; import type { JSONIdentifier } from "./ast"; import type { JSONSyntaxContext } from "./syntax-context"; export declare function validateNode(node: Node, tokens: TokenStore, ctx: JSONSyntaxContext): void; export declare function isStaticValueIdentifier<I extends Identifier | JSONIdentifier>(node: I, ctx: JSONSyntaxContext): node is I & { name: "NaN" | "Infinity" | "undefined"; };
Version data entries
26 entries across 26 versions & 1 rubygems