2023-05-07 18:24:53 +00:00
|
|
|
import * as plugins from '../websetup.plugins.js';
|
2020-11-04 18:01:04 +00:00
|
|
|
export interface IMetaObject {
|
|
|
|
title: string;
|
2020-11-05 17:56:35 +00:00
|
|
|
description?: string;
|
2020-11-04 18:01:04 +00:00
|
|
|
canonicalDomain?: string;
|
|
|
|
ldCompany?: plugins.tsclass.business.ICompany;
|
2023-05-07 18:24:53 +00:00
|
|
|
ldProduct?: plugins.tsclass.saas.IProduct;
|
2020-12-07 05:06:30 +00:00
|
|
|
|
|
|
|
// handles
|
|
|
|
twitterHandle?: string;
|
2020-12-07 23:11:13 +00:00
|
|
|
facebookHandle?: string;
|
2020-12-07 05:06:30 +00:00
|
|
|
|
|
|
|
// links
|
|
|
|
companyWebsiteLink?: string;
|
|
|
|
googleNewsLink?: string;
|
|
|
|
mediumLink?: string;
|
|
|
|
slackLink?: string;
|
|
|
|
airmeetLink?: string;
|
2020-11-04 18:01:04 +00:00
|
|
|
}
|