import { faker } from '@faker-js/faker'; import { GptQuestion } from '@3cr/viewer-types-ts'; export class GptQuestionFaker { static random(): GptQuestion { return { Question: faker.lorem.text(), ApiPreFilledRequestKey: faker.number.int(), }; } }