setInstruction.d.ts 264 B

12345678
  1. import { Instruction } from 'src/types';
  2. export declare function setInstruction(instruction: Instruction): {
  3. '@type': string;
  4. name?: string | undefined;
  5. text: string;
  6. url?: string | undefined;
  7. image?: string | undefined;
  8. } | undefined;