mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-02-14 23:18:54 +00:00
10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
// Copyright 2026 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export type KeyTransparencyStatusType =
|
|
| 'idle'
|
|
| 'running'
|
|
| 'ok'
|
|
| 'fail'
|
|
| 'unavailable';
|