Skip to content

Commit

Permalink
Merge 283b6e0 into cdd4572
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedtabrizi committed Sep 18, 2020
2 parents cdd4572 + 283b6e0 commit e638948
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
{
"name": "Saeed Tabrizi",
"email": "saeed@nowcando.com"
"email": "saeed.tabrizi@gmail.com"
}
],
"repository": {
Expand Down
10 changes: 6 additions & 4 deletions typescript/orientjs/orientjs.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// Type definitions for orientjs 3.0
// Project: https://github.com/orientechnologies/orientjs
// Definitions by: [Saeed Tabrizi] <https://github.com/saeedtabrizi>
// [Aleksey Rezvov] <https://github.com/aleksey-rezvov>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.6
// Last Update : 08-11-2019
// Developed in www.nowcando.com
// Last Update : 09-18-2020
// Developed in www.nowcando.ir

/// <reference types="node" />

Expand Down Expand Up @@ -1125,7 +1126,7 @@ declare namespace orientjs {
close(): Promise<void>;
}

class ODatabaseTransaction {
class ODatabaseTransaction extends OTransaction {
/**
* Execute an SQL command against the database and retreive the results
* @param command The command to execute.
Expand Down Expand Up @@ -1311,7 +1312,7 @@ declare namespace orientjs {

session(options?: ODatabaseSessionOptions): Promise<ODatabaseSession>;

sessions(options?: ODatabaseSessionOptions): Promise<ODatabaseSessionPool>;
sessions(options?: ODatabaseSessionPoolOptions): Promise<ODatabaseSessionPool>;
migrator(config?: Migration.MigrationManagerConfig): Migration.MigrationManager;
createDatabase(options?: DatabaseOptions): Promise<void>;
dropDatabase(options?: DropDatabaseOptions): Promise<void>;
Expand Down Expand Up @@ -1401,3 +1402,4 @@ export = orientjs;
});
});
=============================================== */

0 comments on commit e638948

Please sign in to comment.