siegel
Version:
Web application development ecosystem
17 lines (16 loc) • 397 B
TypeScript
type SEOParams = {
/** New title tag value */
title?: string;
/** New meta description tag content */
description?: string;
/** New meta keywords tag content */
keywords?: string;
};
/**
* Updates HTML SEO tags
*
* @param seoParams - SEO params
*/
declare function updateSEOParams(seoParams: SEOParams): void;
export default updateSEOParams;
export type { SEOParams };