refactor: count all return type (#17529)

This commit is contained in:
Jason Rasmussen 2025-04-10 14:38:49 -04:00 committed by GitHub
parent abde0fbe60
commit 0b22d3348e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 52 additions and 55 deletions

2
server/src/db.d.ts vendored
View file

@ -17,7 +17,7 @@ import {
SyncEntityType,
} from 'src/enum';
import { UserTable } from 'src/schema/tables/user.table';
import {OnThisDayData, UserMetadataItem} from 'src/types';
import { OnThisDayData, UserMetadataItem } from 'src/types';
export type ArrayType<T> = ArrayTypeImpl<T> extends (infer U)[] ? U[] : ArrayTypeImpl<T>;