repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
docs-core
/
lib
/
UseCase
/
VerifyUpdatesResult.ts
blob
a4294d5ebfd0031fe33320ff9eff17ed552c1792
1
import type { DecryptedMessage } from '@proton/docs-shared'
2
3
export type SingleMessageVerificationResult = {
4
verified: boolean
5
message: DecryptedMessage
6
}
7
8
export type VerificationUsecaseResult = {
9
allVerified: boolean
10
messages: SingleMessageVerificationResult[]
11
}