ng-simple-seo
Version:
A very light weight seo mechanism that adds all the necessary meta tags to your Angular Application 🚊
23 lines (22 loc) • 705 B
TypeScript
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { NgSimpleSeoService } from './ng-simple-seo.service';
export declare class NgSimpleSeoComponent implements OnInit, OnChanges {
ngSimpleSeoService: NgSimpleSeoService;
title?: string;
description?: any;
keywords?: any;
twitterTitle?: any;
twitterDescription?: any;
twitterImage?: any;
twitterSite?: any;
twitterCreator?: any;
ogTitle?: any;
ogType?: any;
ogDescription?: any;
ogImage?: any;
ogUrl?: any;
ogSitename?: any;
constructor(ngSimpleSeoService: NgSimpleSeoService);
ngOnChanges(changes: SimpleChanges): void;
ngOnInit(): void;
}