/** * Extended Map that automatically creates item if it does not exist. * Usage: * const map = new AutofillMap(); * map.getOrCreate('key', () => []); */ export declare class AutofillMap extends Map { getOrCreate(key: K, createFn: (key: K) => V): V; } //# sourceMappingURL=AutofillMap.d.ts.map