baja-lite 1.5.1 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sql.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baja-lite",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "some util for self",
5
5
  "homepage": "https://github.com/void-soul/baja-lite",
6
6
  "repository": {
package/sql.d.ts CHANGED
@@ -488,7 +488,7 @@ export interface SqliteRemoteInterface {
488
488
  restore(dbName: string, importPath: string): void;
489
489
  close(dbName?: string): void;
490
490
  }
491
- interface Connection {
491
+ export interface Connection {
492
492
  [_daoConnection]: any;
493
493
  [_inTransaction]: boolean;
494
494
  execute(sync: SyncMode.Sync, sql?: string, params?: any): {