setContactPoint.d.ts 393 B

12345678910
  1. import { ContactPoint } from 'src/types';
  2. export declare function setContactPoint(contactPoint: ContactPoint): {
  3. '@type': string;
  4. contactType: string;
  5. telephone: string;
  6. email?: string | undefined;
  7. areaServed?: string | string[] | undefined;
  8. availableLanguage?: string | string[] | undefined;
  9. contactOption?: string | string[] | undefined;
  10. } | undefined;