webapp/src/utils/isAuthor.ts

6 lines
157 B
TypeScript
Raw Normal View History

2023-11-28 13:18:25 +00:00
import { Author, Topic } from '../graphql/schema/core.gen'
export const isAuthor = (value: Author | Topic): value is Author => {
return 'name' in value
}