jsonld.d.ts 365 B

123456789101112
  1. /// <reference types="react" />
  2. export interface JsonLdProps {
  3. type?: string;
  4. scriptId?: string;
  5. dataArray?: any[];
  6. useAppDir?: boolean;
  7. [key: string]: any;
  8. }
  9. declare function JsonLd({ type, keyOverride, scriptKey, scriptId, dataArray, useAppDir, ...rest }: JsonLdProps & {
  10. scriptKey: string;
  11. }): JSX.Element;
  12. export { JsonLd };