Add type annotations to export

This commit is contained in:
Danila Fedorin 2021-08-12 13:25:30 -07:00
parent 2eea5d5ab8
commit 64b767e7eb

View file

@ -17,14 +17,14 @@ limitations under the License.
import { iterateCursor, txnAsPromise } from "./utils"; import { iterateCursor, txnAsPromise } from "./utils";
import { STORE_NAMES } from "../common"; import { STORE_NAMES } from "../common";
export async function exportSession(db) { export async function exportSession(db: IDBDatabase): Promise<{ [storeName : string] : any }> {
const NOT_DONE = {done: false}; const NOT_DONE = {done: false};
const txn = db.transaction(STORE_NAMES, "readonly"); const txn = db.transaction(STORE_NAMES, "readonly");
const data = {}; const data = {};
await Promise.all(STORE_NAMES.map(async name => { await Promise.all(STORE_NAMES.map(async name => {
const results = data[name] = []; // initialize in deterministic order const results: any[] = data[name] = []; // initialize in deterministic order
const store = txn.objectStore(name); const store = txn.objectStore(name);
await iterateCursor(store.openCursor(), (value) => { await iterateCursor<any>(store.openCursor(), (value) => {
results.push(value); results.push(value);
return NOT_DONE; return NOT_DONE;
}); });
@ -32,7 +32,7 @@ export async function exportSession(db) {
return data; return data;
} }
export async function importSession(db, data) { export async function importSession(db: IDBDatabase, data: { [storeName: string]: any }): Promise<void> {
const txn = db.transaction(STORE_NAMES, "readwrite"); const txn = db.transaction(STORE_NAMES, "readwrite");
for (const name of STORE_NAMES) { for (const name of STORE_NAMES) {
const store = txn.objectStore(name); const store = txn.objectStore(name);