webapp/src/utils/isAuthor.ts
2023-11-28 16:18:25 +03:00

6 lines
157 B
TypeScript

import { Author, Topic } from '../graphql/schema/core.gen'
export const isAuthor = (value: Author | Topic): value is Author => {
return 'name' in value
}