UNPKG

tdesign-miniprogram

Version:
25 lines (24 loc) 520 B
export interface TdFooterProps { text?: { type: StringConstructor; value?: string; }; logo?: { type: ObjectConstructor; value?: FooterLogo; }; links?: { type: ArrayConstructor; value?: Array<LinkObj>; }; } export interface FooterLogo { icon: string; title?: string; titleUrl?: string; } export interface LinkObj { name: string; url?: string; openType?: 'navigate' | 'redirect' | 'relaunch' | 'switchTab' | 'navigateBack'; }