import { faker } from '@faker-js/faker'; import { Upload } from '@3cr/viewer-types-ts'; export class UploadFaker { static random(): Upload { return { id: faker.string.uuid(), title: faker.lorem.words(), subtitle: faker.lorem.words(), status: faker.helpers.arrayElement([ 'uploading', 'completed', 'failed', 'cancelled', ]), progress: faker.number.float(), }; } }