ng-simple-seo
Version:
A very light weight seo mechanism that adds all the necessary meta tags to your Angular Application 🚊
8 lines (7 loc) • 454 B
TypeScript
import { Meta, Title } from '@angular/platform-browser';
export declare class NgSimpleSeoService {
private title;
private meta;
constructor(title: Title, meta: Meta);
set(title?: any, keywords?: any, description?: any, twitterTitle?: any, twitterDescription?: any, twitterImage?: any, twitterSite?: any, twitterCreator?: any, ogTitle?: any, ogType?: any, ogDescription?: any, ogImage?: any, ogUrl?: any, ogSitename?: any): void;
}