TeaSpeak-Client/imports/shared-app/ui/tree/EntryTags.d.ts

22 lines
645 B
TypeScript

import * as React from "react";
export declare const ServerTag: React.MemoExoticComponent<(props: {
serverName: string;
handlerId: string;
serverUniqueId?: string;
className?: string;
}) => JSX.Element>;
export declare const ClientTag: React.MemoExoticComponent<(props: {
clientName: string;
clientUniqueId: string;
handlerId: string;
clientId?: number;
clientDatabaseId?: number;
className?: string;
}) => JSX.Element>;
export declare const ChannelTag: React.MemoExoticComponent<(props: {
channelName: string;
channelId: number;
handlerId: string;
className?: string;
}) => JSX.Element>;