antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
19 lines (18 loc) • 405 B
TypeScript
import { IBaseProps } from '../_util/base';
export interface IWelcomeProps extends IBaseProps {
className?: string;
/**
* @description 样式
*/
styles?: string;
/**
* @description 标题
*/
title: string;
/**
* @description 描述
*/
description: string;
onTap?: (e: any) => void;
}
export declare const WelcomeProps: Partial<IWelcomeProps>;