Files
turingflow-brand-003/src/utils/payload.ts
“dongming” ea72dd0c3c first commit
2026-01-21 16:08:49 +08:00

12 lines
358 B
TypeScript

import type { Category, Media } from '../clientsdk/types.gen'
export const isCategory = (value: unknown): value is Category => {
if (!value || typeof value !== 'object') return false
return 'title' in value
}
export const isMedia = (value: unknown): value is Media => {
if (!value || typeof value !== 'object') return false
return 'url' in value
}