webapp/src/utils/isAuthor.ts

6 lines
151 B
TypeScript
Raw Normal View History

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