diff options
author | Eric Bailey <git@esb.lol> | 2024-09-11 21:28:34 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2024-09-11 21:28:34 -0500 |
commit | c8b133863df5c6b417562f71f8a3c6feef280139 (patch) | |
tree | 436c4536ab957e6856a0aba79580f8b262e945d8 /src/state/queries | |
parent | 9bb385a4dd54aca2b21533b7dd919ac8d0b4aeef (diff) | |
download | voidsky-c8b133863df5c6b417562f71f8a3c6feef280139.tar.zst |
Fix some nux types
Diffstat (limited to 'src/state/queries')
-rw-r--r-- | src/state/queries/nuxs/types.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/state/queries/nuxs/types.ts b/src/state/queries/nuxs/types.ts index 5b7918470..2331582a1 100644 --- a/src/state/queries/nuxs/types.ts +++ b/src/state/queries/nuxs/types.ts @@ -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 |