@ebay/ebayui-core
Version:
Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.
9 lines (8 loc) • 327 B
TypeScript
import type { Input } from "./index.marko";
declare class Button extends Marko.Component<Input> {
handleClick(originalEvent: MouseEvent): void;
handleKeydown(originalEvent: KeyboardEvent): void;
handleFocus(originalEvent: FocusEvent): void;
handleBlur(originalEvent: FocusEvent): void;
}
export default Button;