UNPKG

@progressive-development/pd-page

Version:

Progressive development page helper, teaser, menu, footer.

25 lines 457 B
/** * Datentyp für einen Footer-Link. */ export interface PdFooterLink { key: string; name: string; } /** * Datentyp für den "madeBy"-Block. */ export interface PdFooterMadeBy { txt: string; email?: string; link?: string; } export interface PdMenuItem { key: string; name: string; route?: string; sec?: string; icon?: string; action?: () => void; ref?: HTMLElement; } //# sourceMappingURL=types.d.ts.map