quarkd
Version:
Mobile UI Components built on Web Components.
24 lines (23 loc) • 566 B
TypeScript
import { QuarkElement } from "quarkc";
import "../tabbaritem";
export interface Props {
fixed?: boolean;
active?: string;
}
export interface CustomEvent {
change: (e: {
detail: {
value: string;
};
}) => void;
}
declare class QuarkTabbar extends QuarkElement {
fixed: boolean;
active: string;
slotRef: any;
shouldComponentUpdate(propName: string, oldValue: string, newValue: string): boolean;
slotchange: () => void;
eventListener: (e: any) => void;
render(): any;
}
export default QuarkTabbar;