[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [IndexedDB](./puppeteer.protocol.indexeddb.md) > [DatabaseWithObjectStores](./puppeteer.protocol.indexeddb.databasewithobjectstores.md) ## Protocol.IndexedDB.DatabaseWithObjectStores interface Database with an array of object stores. Signature: ```typescript export interface DatabaseWithObjectStores ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [name](./puppeteer.protocol.indexeddb.databasewithobjectstores.name.md) | string | Database name. | | [objectStores](./puppeteer.protocol.indexeddb.databasewithobjectstores.objectstores.md) | [ObjectStore](./puppeteer.protocol.indexeddb.objectstore.md)\[\] | Object stores in this database. | | [version](./puppeteer.protocol.indexeddb.databasewithobjectstores.version.md) | number | Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long') |