react-code-dataset / wp-calypso /client /lib /gsuite /is-domain-eligible-for-google-workspace-introductory-offer.ts
| import type { ResponseDomain } from 'calypso/lib/domains/types'; | |
| export function isDomainEligibleForGoogleWorkspaceIntroductoryOffer( | |
| domain?: ResponseDomain | |
| ): boolean { | |
| return domain?.googleAppsSubscription?.isEligibleForIntroductoryOffer ?? false; | |
| } | |