import type { RequiredDataFromCollection } from 'payload' import type { TextField } from '../../payload-types.js' export const defaultText = 'default-text' export const textFieldsSlug = 'text-fields' export const textDoc: RequiredDataFromCollection = { text: 'Seeded text document', localizedText: 'Localized text', hasMany: ['one', 'two'], } export const anotherTextDoc: RequiredDataFromCollection = { text: 'Another text document', hasMany: ['three', 'four'], }