/** * -- LinkService -- [Temporary] * @MarkPieszak * * Similar to Meta service but made to handle creation for SEO purposes * -- NOTE: Soon there will be an overall DocumentService within Angular that handles Meta/Link everything */ import { RendererFactory2 } from '@angular/core'; export declare class SeoLinkService { private rendererFactory; private document; constructor(rendererFactory: RendererFactory2, document: any); /** * Inject the State into the bottom of the */ addTag(tag: LinkDefinition): void; private _parseSelector; } export declare type LinkDefinition = { charset?: string; crossorigin?: string; href?: string; hreflang?: string; media?: string; rel?: string; rev?: string; sizes?: string; target?: string; type?: string; } & { [prop: string]: string; };