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
/
shared
/
lib
/
keys
/
import
/
interface.ts
blob
3ef61de0197a2a3917e51a1ddab892529bfbbde7
1
import type { PrivateKeyReference } from '@proton/crypto';
2
3
export interface KeyImportData {
4
id: string;
5
privateKey: PrivateKeyReference;
6
}
7
8
export type OnKeyImportCallback = (id: string, result: 'ok' | Error) => void;