UNPKG

@nextcloud/vue

Version:
8 lines (7 loc) 283 B
/** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ type Status = 'online' | 'away' | 'busy' | 'dnd' | 'invisible' | 'offline'; export declare const getUserStatusText: (status: Status) => string; export {};