import type { ContentEditorTableAlignment } from '@admin/utils/editor/content-editor-table-alignment' export function isContentEditorTableAlignment( value: unknown ): value is ContentEditorTableAlignment { return value === 'left' || value === 'center' || value === 'right' }