setQuestions.d.ts 247 B

123456789
  1. import type { Question } from 'src/types';
  2. export declare function setQuestions(questions: Question[]): {
  3. '@type': string;
  4. name: string;
  5. acceptedAnswer: {
  6. '@type': string;
  7. text: string;
  8. };
  9. }[] | undefined;