-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
18 lines (18 loc) · 753 Bytes
/
types.ts
File metadata and controls
18 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export interface ReactHeadSafeProps {
/** The page title that will be set in the document.title */
title?: string;
/** The meta description tag content for SEO */
description?: string;
/** The meta keywords tag content for SEO */
keywords?: string;
/** The Open Graph title (og:title) for social media sharing */
ogTitle?: string;
/** The Open Graph description (og:description) for social media sharing */
ogDescription?: string;
/** The Open Graph image URL (og:image) for social media sharing */
ogImage?: string;
/** The canonical URL of your object that will be used as its permanent ID in the graph (og:url) */
ogUrl?: string;
/** The type of your object, e.g., "website", "article" (og:type) */
ogType?: string;
}