slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
10 lines (9 loc) • 330 B
TypeScript
import React from 'react';
import type { FC, ReactNode } from 'react';
import { NativeProps } from '../../utils/native-props';
declare type Props = {
onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
children?: ReactNode;
} & NativeProps;
export declare const SwiperItem: FC<Props>;
export {};