mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
export type TabButtonLayout = 'icon-top' | 'icon-start' | 'icon-end' | 'icon-bottom' | 'icon-hide' | 'label-hide';
|
|
|
|
export interface TabBarChangedEventDetail {
|
|
tab?: string;
|
|
}
|
|
|
|
export interface TabButtonClickEventDetail {
|
|
tab: string;
|
|
selected: boolean;
|
|
href?: string;
|
|
}
|