/** * Index of all objects stored in storage. */ export default class mapsIndex { instanceID: string; constructor(id: string); /** * * Get all keys */ getKeys(): Promise; /** * Check if a key exists. */ hasKey(key: string): boolean | null | undefined; /** * Get all objects stored in storage. */ getAll(): Promise; } //# sourceMappingURL=maps.d.ts.map