UNPKG

@ebay/ebayui-core

Version:

Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.

13 lines (12 loc) 380 B
import type { WithNormalizedProps } from "../../global"; interface EekInput extends Omit<Marko.HTML.Div, `on${string}`> { max: string; min: string; rating: string; a11yText?: string; size?: "regular" | "large"; } export interface Input extends WithNormalizedProps<EekInput> { } declare const _default: (input: Input) => number | null; export default _default;