UNPKG

thaw-grammar

Version:

Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.

10 lines 375 B
import { IEqualityComparable } from 'thaw-common-utilities.ts'; export declare class StringIntKey implements IEqualityComparable { static from(input: string): StringIntKey; private readonly str; private readonly n; constructor(str: string, n: number); toString(): string; equals(other: unknown): boolean; } //# sourceMappingURL=string-int-key.d.ts.map