Fix some nux types

This commit is contained in:
Eric Bailey 2024-09-11 21:28:34 -05:00
parent 9bb385a4dd
commit c8b133863d
2 changed files with 7 additions and 6 deletions

View file

@ -4,6 +4,4 @@ export type Data = Record<string, unknown> | undefined
export type BaseNux<
T extends Pick<AppBskyActorDefs.Nux, 'id' | 'expiresAt'> & {data: Data},
> = T & {
completed: boolean
}
> = Pick<AppBskyActorDefs.Nux, 'id' | 'completed' | 'expiresAt'> & T