You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportfunctionOpenedConnection(){}OpenedConnection.prototype={/** * The integer schema version of the database. * * This is 0 if not schema version has been set. * * @return String */getSchemaVersion(){return"false"},}
db.sys.mjs
/** * @import {OpenedConnection} from "./Sqlite.sys.mjs" *//** * @param {OpenedConnection} db * @return {String} */exportfunctionfoo(db){returndb.getSchemaVersion();}
getSchemaVersion() in db.sys.mjs should have a definition in Sqlite.sys.mjs but it ends up with a local defintion
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Given the following files:
Sqlite.sys.mjs
db.sys.mjs
getSchemaVersion()
indb.sys.mjs
should have a definition inSqlite.sys.mjs
but it ends up with a local defintionThe text was updated successfully, but these errors were encountered: