Front end of the Slack clone application.

tab-highlight.d.ts 346B

1234567891011121314
  1. import { ElementRef } from '@angular/core';
  2. import { DomController } from '../../platform/dom-controller';
  3. import { Tab } from './tab';
  4. /**
  5. * @hidden
  6. */
  7. export declare class TabHighlight {
  8. private _elementRef;
  9. private _dom;
  10. private _init;
  11. constructor(_elementRef: ElementRef, _dom: DomController);
  12. select(tab: Tab): void;
  13. }