die heldin script add
This commit is contained in:
21
node_modules/@stomp/stompjs/esm6/i-transaction.d.ts
generated
vendored
Normal file
21
node_modules/@stomp/stompjs/esm6/i-transaction.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* A Transaction is created by calling [Client#begin]{@link Client#begin}
|
||||
*
|
||||
* Part of `@stomp/stompjs`.
|
||||
*
|
||||
* TODO: Example and caveat
|
||||
*/
|
||||
export interface ITransaction {
|
||||
/**
|
||||
* You will need to access this to send, ack, or nack within this transaction.
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* Commit this transaction. See [Client#commit]{@link Client#commit} for an example.
|
||||
*/
|
||||
commit: () => void;
|
||||
/**
|
||||
* Abort this transaction. See [Client#abort]{@link Client#abort} for an example.
|
||||
*/
|
||||
abort: () => void;
|
||||
}
|
||||
Reference in New Issue
Block a user