v4web-components
Version:
Stencil Component Starter
16 lines (15 loc) • 406 B
TypeScript
import { EventEmitter } from '../../../stencil-public-runtime';
export declare class LabDsSegmentedControl {
options: Array<{
label: string;
value: string;
icon: string;
}>;
selectedSegmented: string;
value: string;
handleSelectedValue: EventEmitter;
handleSelectedValueEmit(value: string): void;
componentDidLoad(): void;
watchValue(newValue: string): void;
render(): any;
}