react-code-dataset / wp-calypso /client /lib /gsuite /get-gsuite-expiry-date.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { ResponseDomain } from 'calypso/lib/domains/types';
export function getGSuiteExpiryDate( domain: ResponseDomain | undefined ): string | null {
return domain?.googleAppsSubscription?.expiryDate ?? null;
}