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

26 lines
763 B
TypeScript
Raw Normal View History

import * as React from "react";
2021-04-19 14:27:12 -04:00
declare type EntryTagStyle = "text-only" | "normal";
export declare const ServerTag: React.MemoExoticComponent<(props: {
serverName: string;
handlerId: string;
serverUniqueId?: string;
className?: string;
2021-04-19 14:27:12 -04:00
style?: EntryTagStyle;
}) => JSX.Element>;
export declare const ClientTag: React.MemoExoticComponent<(props: {
2021-02-20 12:55:36 -05:00
clientName: string;
clientUniqueId: string;
handlerId: string;
clientId?: number;
clientDatabaseId?: number;
className?: string;
2021-04-19 14:27:12 -04:00
style?: EntryTagStyle;
}) => JSX.Element>;
export declare const ChannelTag: React.MemoExoticComponent<(props: {
2021-02-20 12:55:36 -05:00
channelName: string;
channelId: number;
handlerId: string;
className?: string;
}) => JSX.Element>;
2021-04-19 14:27:12 -04:00
export {};