14 lines
346 B
TypeScript
14 lines
346 B
TypeScript
import type { TextField } from '../../payload-types.js'
|
|
|
|
export const defaultText = 'default-text'
|
|
export const textFieldsSlug = 'text-fields'
|
|
|
|
export const textDoc: Partial<TextField> = {
|
|
text: 'Seeded text document',
|
|
localizedText: 'Localized text',
|
|
}
|
|
|
|
export const anotherTextDoc: Partial<TextField> = {
|
|
text: 'Another text document',
|
|
}
|