The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/ui-utils/client/lib/AccountBox.d.ts

16 lines
513 B

import type { ComponentProps } from 'react';
import { Option } from '@rocket.chat/fuselage';
import { IUser } from '../../../../definition/IUser';
import { TranslationKey } from '../../../../client/contexts/TranslationContext';
export declare const AccountBox: {
setStatus: (status: IUser['status'], statusText?: IUser['statusText']) => void;
getItems: () => Array<{
condition: () => boolean;
name: TranslationKey;
icon: ComponentProps<typeof Option>['icon'];
sideNav: string;
href: string;
}>;
};