react-code-dataset / wp-calypso /client /lib /gsuite /is-domain-eligible-for-google-workspace-introductory-offer.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { ResponseDomain } from 'calypso/lib/domains/types';
export function isDomainEligibleForGoogleWorkspaceIntroductoryOffer(
domain?: ResponseDomain
): boolean {
return domain?.googleAppsSubscription?.isEligibleForIntroductoryOffer ?? false;
}