UNPKG

@informalsystems/quint

Version:

Core tool for the Quint specification language

12 lines (11 loc) 218 B
/** * Generation of fresh variables with a given prefix. * * @author Gabriela Moreira * * @module */ export declare class FreshVarGenerator { private freshVarCounters; freshVar(prefix: string): string; }