File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
* limitations under the License.
18
18
*/
19
19
20
- import Transaction from " ./transaction"
20
+ import Transaction from ' ./transaction'
21
21
import {
22
22
ConnectionHolder
23
23
} from './internal/connection-holder'
24
24
25
25
import { Bookmarks } from './internal/bookmarks'
26
- import { TxConfig } from " ./internal/tx-config" ;
26
+ import { TxConfig } from ' ./internal/tx-config'
27
27
28
28
/**
29
29
* Represents a {@link Promise<Transaction>} object and a {@link Transaction} object.
@@ -41,7 +41,7 @@ class TransactionPromise extends Transaction implements Promise<Transaction>{
41
41
private _beginMetadata ?: any ;
42
42
private _beginPromise ?: Promise < Transaction > ;
43
43
private _reject ?: ( error : Error ) => void ;
44
- private _resolve ?: ( value ? : Transaction | PromiseLike < Transaction > | undefined ) => void ;
44
+ private _resolve ?: ( value : Transaction | PromiseLike < Transaction > ) => void ;
45
45
46
46
/**
47
47
* @constructor
You can’t perform that action at this time.
0 commit comments