carbon-components-angular
Version:
Next generation components
13 lines (12 loc) • 356 B
TypeScript
import { QueryList, EventEmitter, AfterViewInit } from "@angular/core";
import { ContentSwitcherOption } from "./content-switcher-option.directive";
/**
*
*
*/
export declare class ContentSwitcher implements AfterViewInit {
label: string;
selected: EventEmitter<{}>;
options: QueryList<ContentSwitcherOption>;
ngAfterViewInit(): void;
}