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
Remove payments API routing initialization
[ProtonMail-WebClient.git]
/
packages
/
components
/
containers
/
vpn
/
Certificate.ts
blob
c42da2e5f02804dd480720ec92ee3d94e031262a
1
export interface Certificate {
2
id: string;
3
name?: string | null | undefined;
4
serialNumber?: string;
5
privateKey?: string;
6
publicKey: string;
7
publicKeyFingerprint: string;
8
expirationTime: number;
9
config?: string;
10
features?: Record<string, string | number | boolean | null>;
11
}