- From: beidson <notifications@github.com>
- Date: Tue, 22 Aug 2017 23:32:53 +0000 (UTC)
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 22 August 2017 23:33:16 UTC
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