export async function clear(dbName: string, tableName: string) {
  store.delete(`${dbName}.${tableName}`);
  return true;
}