UNPKG

shineout

Version:

Shein 前端组件库

15 lines (14 loc) 340 B
import { PureComponent } from 'react'; import { LinksProps } from './Props'; declare class Links extends PureComponent<LinksProps> { static defaultProps: { span: number; text: {}; }; getLinks(): { links: (string | number)[]; max: number; }; render(): JSX.Element; } export default Links;