Taylor Benner
Results
1
comments of
Taylor Benner
I used this hacky typeguard to get around this quickly: ``` const isUserBased = (arg: object): arg is T & { user: string } => (arg as { user?: string...