Timo Hocker fd26975559
Some checks failed
continuous-integration/drone/push Build is failing
redis sync
2022-08-08 15:52:56 +02:00

17 lines
293 B
TypeScript

export interface Key {
key: string;
valid_until: number;
}
export interface LabelledKey extends Key {
index: string;
}
export interface KeyPair {
private_key?: Key;
public_key: Key;
}
export type KeyStoreData = Record<string, KeyPair>;
export type KeyStoreExport = LabelledKey[];