UNPKG

194 BTypeScriptView Raw
1/**
2 * The number of elements in a set lookup, and a
3 * function that returns the lookup.
4 */
5export interface SetLookup {
6 len: number;
7 lookup: () => Record<string | number, boolean>;
8}