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