setStep.d.ts 395 B

123456789101112131415
  1. import { Step } from 'src/types';
  2. export declare function setStep(step?: Step[]): {
  3. '@type': string;
  4. itemListElement: {
  5. '@type': "HowToTip" | "HowToDirection";
  6. text: string;
  7. }[] | undefined;
  8. image: {
  9. '@type': string;
  10. url: string;
  11. } | undefined;
  12. type: string;
  13. name: string;
  14. url?: string | undefined;
  15. }[] | undefined;