UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

8 lines (7 loc) 247 B
import { BehaviorSubject, ReplaySubject } from 'rxjs'; export declare class TabLabelStream { icon$?: BehaviorSubject<string | undefined>; text$?: ReplaySubject<string>; constructor(icon?: string, text?: string); destroy(): void; }