({ id, key, name }: Team)
| 1 | import { Team, User } from '@linear/sdk'; |
| 2 | |
| 3 | export function parseTeam({ id, key, name }: Team) { |
| 4 | return { id, key, name }; |
| 5 | } |
| 6 | |
| 7 | export function parseUser({ id, displayName, email, avatarUrl, admin }: User) { |
| 8 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected