@osovitny/anatoly 3.19.47 → 3.19.48
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.
|
@@ -4,13 +4,23 @@ export declare class DigitalMarketingService {
|
|
|
4
4
|
private title;
|
|
5
5
|
private meta;
|
|
6
6
|
private dom;
|
|
7
|
+
private existingMetaTags;
|
|
7
8
|
constructor(title: Title, meta: Meta, dom: any);
|
|
8
9
|
updateTitle(title?: string): void;
|
|
9
10
|
updateDescription(desc?: string): void;
|
|
10
|
-
updateKeywords(keywords?:
|
|
11
|
-
updateMetaTags(
|
|
11
|
+
updateKeywords(keywords?: string): void;
|
|
12
|
+
updateMetaTags(metaDefinitions: MetaDefinition[]): void;
|
|
13
|
+
private removePreviousMetaTags;
|
|
14
|
+
private getMetaTagKey;
|
|
12
15
|
setCanonicalUrl(url?: string): void;
|
|
13
16
|
updateCanonicalUrl(url?: string): void;
|
|
17
|
+
updateOpenGraphTags(ogTags: {
|
|
18
|
+
title?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
image?: string;
|
|
21
|
+
url?: string;
|
|
22
|
+
}): void;
|
|
23
|
+
clearAllMetaTags(): void;
|
|
14
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<DigitalMarketingService, never>;
|
|
15
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<DigitalMarketingService>;
|
|
16
26
|
}
|