webapp/src/utils/isAuthor.ts
Ilya Y 3d6c6ccbc8
Feature/subscribe settings (#224)
Subscribe settings page
2023-09-18 19:33:22 +03:00

6 lines
151 B
TypeScript

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