UNPKG

ret

Version:

Tokenizes a string that represents a regular expression.

9 lines (8 loc) 194 B
/** * The number of elements in a set lookup, and a * function that returns the lookup. */ export interface SetLookup { len: number; lookup: () => Record<string | number, boolean>; }