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