die heldin script add

This commit is contained in:
2026-02-24 07:04:01 +01:00
parent a1b35fecce
commit 420391f48a
1847 changed files with 597777 additions and 0 deletions

21
node_modules/@stomp/stompjs/esm6/i-transaction.d.ts generated vendored Normal file
View 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;
}