包含 webapp(Next.js 用户端)、webapp-back(Go 后端)、 antdesign(管理后台)、landingpage(营销落地页)、 数据库 SQL 和配置文件。
8 lines
287 B
TypeScript
8 lines
287 B
TypeScript
declare namespace JSX {
|
|
interface IntrinsicElements {
|
|
'appkit-button': { size?: 'sm' | 'md'; label?: string; loadingLabel?: string; disabled?: boolean };
|
|
'appkit-network-button': Record<string, unknown>;
|
|
'appkit-account-button': { balance?: 'show' | 'hide' };
|
|
}
|
|
}
|