aboutsummaryrefslogtreecommitdiff
path: root/ext/js/data/database.js
diff options
context:
space:
mode:
authorCashew <52880648+Scrub1492@users.noreply.github.com>2023-12-19 14:22:22 +0900
committerGitHub <noreply@github.com>2023-12-19 05:22:22 +0000
commit5f96276fda93dcad39f2165fd3c8d890aa5f9be5 (patch)
tree1437c9298afa0ecd41414446043fe799026e8c79 /ext/js/data/database.js
parent7b93055f2e3d79729195fbd515cdccbf538c9376 (diff)
update JSDoc comments (#387)
* lesen-tan initial commit * update README.md * tidy up code * opt for Map<K, V> instead of Object * Document dev/* * add docs for deinflector.js * update deinflector example * Annotate * Revert "Merge branch 'development' of https://github.com/Scrub1492/lesen-tan into development" This reverts commit b92348f702bc031b36f24462adfa940d17f9ecdd, reversing changes made to 3255e6d963281af3533dcf1e893df39032d29fec. * Lint error fix * Lint error fix * update JSDoc comments --------- Co-authored-by: Darius Jahandarie <djahandarie@gmail.com>
Diffstat (limited to 'ext/js/data/database.js')
-rw-r--r--ext/js/data/database.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/ext/js/data/database.js b/ext/js/data/database.js
index 5aba1373..c8047b41 100644
--- a/ext/js/data/database.js
+++ b/ext/js/data/database.js
@@ -17,7 +17,6 @@
*/
/**
- * Database class to store objects.
* @template {string} TObjectStoreName
*/
export class Database {
@@ -29,7 +28,6 @@ export class Database {
}
/**
- * Opens the DB.
* @param {string} databaseName
* @param {number} version
* @param {import('database').StructureDefinition<TObjectStoreName>[]} structure
@@ -53,7 +51,6 @@ export class Database {
}
/**
- * Closes the DB.
* @throws {Error}
*/
close() {
@@ -66,7 +63,7 @@ export class Database {
}
/**
- * Returns true if DB opening is in process.
+ * Returns true if the database opening is in process.
* @returns {boolean}
*/
isOpening() {
@@ -74,7 +71,7 @@ export class Database {
}
/**
- * Returns true if the DB is open.
+ * Returns true if the database is fully opened.
* @returns {boolean}
*/
isOpen() {
@@ -97,10 +94,10 @@ export class Database {
/**
* Add items in bulk to the object store.
- * count items will be added beginning from start index of items list.
+ * _count_ items will be added, starting from _start_ index of _items_ list.
* @param {TObjectStoreName} objectStoreName
* @param {unknown[]} items List of items to add.
- * @param {number} start Start index. Added items begin at items[start].
+ * @param {number} start Start index. Added items begin at _items_[_start_].
* @param {number} count Count of items to add.
* @returns {Promise<void>}
*/