UNPKG

@nextcloud/vue

Version:
13 lines (12 loc) 380 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'; /** * Get the translated label for a given user status * * @param status - The user status */ export declare function getUserStatusText(status: Status): string; export {};