UNPKG

sitemap-generator-static-suite

Version:

Generador de sitemaps para proyectos static-suite que emplear un iterador sobre todos los contenidos creados al más puro estilo Bidasoa.

19 lines (18 loc) 376 B
interface BaseContentNode { id: string; title: string; subtitle?: string; bundle: string; created: number; changed: number; isPublished: boolean; language: { id: string; }; url: { path: string; }; menuMachineName?: string; } export type ContentNode<T = Record<string, unknown>> = BaseContentNode & T; export {};