TeaSpeak-Client/imports/shared-app/ui/frames/HostBannerRenderer.d.ts

11 lines
459 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
import { Registry } from "tc-shared/events";
import { HostBannerInfoSet, HostBannerUiEvents } from "tc-shared/ui/frames/HostBannerDefinitions";
2021-02-20 18:55:36 +01:00
import * as React from "react";
export declare const HostBannerRenderer: React.MemoExoticComponent<(props: {
banner: HostBannerInfoSet;
className?: string;
}) => JSX.Element>;
2021-02-20 18:55:36 +01:00
export declare const HostBanner: React.MemoExoticComponent<(props: {
events: Registry<HostBannerUiEvents>;
}) => JSX.Element>;