Re: [w3c/IndexedDB] API to enumerate databases (#31)

I prefer getAllDatabases
It just reads better, it's more natural.
"getDatabaseInfo" is bizarre as it's singular.
And "getDatabaseInfos" is just terrible.

Also support a Promise over and IDBRequest.

I'm pretty sure:
    partial interface IDBFactory {
      Promise<IDBDatabaseInfo> getDatabasesInfo();
    }

Should be:
    partial interface IDBFactory {
      Promise<Sequence<IDBDatabaseInfo>> getAllDatabases();
    }

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/31#issuecomment-324179940

Received on Tuesday, 22 August 2017 23:33:16 UTC