UNPKG

bidasoa-models

Version:

Colección de modelos de datos de elementos propios de Bidasoa.

22 lines (21 loc) 519 B
export interface MetaTags { type: 'MetaValue' | 'MetaProperty' | 'MetaHttpEquiv' | 'MetaItemProp' | 'MetaLink' | 'MetaLinkHreflang'; property: string; content: string | HrefLangContent; } export interface HrefLangContent { rel: string; hreflang: string; href: string; } export interface ContentMetaTag { 'property'?: string; 'http-equiv'?: string; 'itemprop'?: string; 'name'?: string; 'content': string; } export interface MetaTagLink { rel: string; href: string; }