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