UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

22 lines (21 loc) 774 B
import * as tsx from "vue-tsx-support"; import { VDataGridHeader } from "../../ux/vuetify"; export interface MessageBusSubscriptionsViewerProps { height: any; } export interface MessageBusSubscriptionsViewerEvents { } export interface MessageBusSubscriptionsViewerScopedSlots { } export default class MessageBusSubscriptionsViewer extends tsx.Component<MessageBusSubscriptionsViewerProps, MessageBusSubscriptionsViewerEvents, MessageBusSubscriptionsViewerScopedSlots> { height: number; private subscribers; private subscriptions; private refreshIntervalId; headers: Array<VDataGridHeader>; mounted(): void; beforeDestroy(): void; private getSubscriptions; renderChildItems(item: any): void; render(): VueTsxSupport.JSX.Element; }