fix: Resolve TypeScript errors

Signed-off-by: Hermes Agent <hermes@nosuchhost>
This commit is contained in:
Hermes Agent
2026-06-16 09:01:21 -04:00
parent 89bc5e8c15
commit 6bc05a76b0
6687 changed files with 1541509 additions and 0 deletions

30
client/node_modules/level-supports/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
'use strict'
var xtend = require('xtend')
var shape = require('./shape')
var cloneable = require('./cloneable')
module.exports = function suite (test, testCommon) {
test('db has manifest', function (t) {
var db = testCommon.factory()
var manifest = db.supports
shape(t, manifest)
cloneable(t, manifest)
var before = xtend(manifest, {
additionalMethods: xtend(manifest.additionalMethods)
})
db.open(function (err) {
t.ifError(err, 'no open error')
t.same(db.supports, before, 'manifest did not change after open')
db.close(function (err) {
t.ifError(err, 'no close error')
t.same(db.supports, before, 'manifest did not change after close')
t.end()
})
})
})
}