Skip to content

Declarations mismatch #102

Open
Open
@qt-kaneko

Description

@qt-kaneko
sqlite3.vfs.installVfs({
  io: {
    methods: {
      //                    \/ Should be bigint as bigint is actually passed
      xRead(fid, dest, n, offset) {
        ...
      }
    }
  }
})

Not sure about these, but

// Are named without $ in declarations, but it does not work without $

let vfs = new sqlite3.capi.sqlite3_vfs();
vfs.$iVersion = ...;
vfs.$mxPathname = ...;
vfs.$zName = ...;
vfs.$szOsFile = ...;

// And

let file = new sqlite3.capi.sqlite3_file();
file.$pMethods = ...;

Also there is no capi.sqlite3_file.structInfo in declarations, would be nice to have it.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions