Skip to content

Commit 0a8e487

Browse files
authored
feat: add needed types (#75)
1 parent 4941514 commit 0a8e487

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/types/transactions.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ export type MultiSend = {
188188
isCancellation: boolean
189189
}
190190

191+
export type Cancellation = Custom & {
192+
isCancellation: true
193+
}
194+
191195
export type Creation = {
192196
type: 'Creation'
193197
creator: AddressEx
@@ -273,7 +277,7 @@ export type ConflictHeader = {
273277
type: 'CONFLICT_HEADER'
274278
}
275279

276-
export type TransactionListItem = Transaction | Label | ConflictHeader
280+
export type TransactionListItem = Transaction | DateLabel | Label | ConflictHeader
277281

278282
export type Page<T> = {
279283
next?: string

0 commit comments

Comments
 (0)