UNPKG
component-dbs-core
Version:
latest (1.0.1)
1.0.1
1.0.0
DTO objects shared among device backend
bitbucket.org/npco_dev/component-dbs-core
component-dbs-core
/
dist
/
transaction
/
TransactionProjectionEventDto.d.ts
9 lines
(8 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
TransactionDto
}
from
"./transactionDto"
;
export
declare
class
TransactionProjectionEventDto
{
readonly
payload
:
TransactionDto
;
/** *
@param
payload The event payload */
constructor
(
payload
:
TransactionDto
); }