radh-ui
Version:
Stencil Component Starter
16 lines (15 loc) • 378 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
interface Locale {
name: string;
value: string;
}
export declare class RadhLocaleSelect {
sendLocale: EventEmitter;
locales: string;
innerLocales: Locale[];
parseLocale(newValue: string): void;
componentWillLoad(): void;
handleSelect(event: any): void;
render(): any;
}
export {};