sass-template-common 0.9.35 → 0.9.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -720,7 +720,14 @@ declare interface External_2 {
720
720
 
721
721
  export declare const extractMainSlug: (pathname: string) => string;
722
722
 
723
- export declare function extractRealtedNews(article: NewListResponseData): Array<Array<string>>;
723
+ /** @deprecated Nombre con typo; usar `extractRelatedNews`. */
724
+ export declare const extractRealtedNews: typeof extractRelatedNews;
725
+
726
+ /**
727
+ * Devuelve, por cada bloque `.ck-related-news`, todos los `data-src` de los `<span>` internos
728
+ * (un bloque puede tener varios spans).
729
+ */
730
+ export declare function extractRelatedNews(article: NewListResponseData): Array<Array<string>>;
724
731
 
725
732
  export declare type FetchConfig = {
726
733
  imgSizes: string;