import { faker } from '@faker-js/faker'; import { ActionData } from '@3cr/viewer-types-ts'; export class ActionDataFaker { static random(): ActionData { return { Description: faker.lorem.text(), Url: faker.internet.url(), }; } }