chore: remove unused code (#15499)

This commit is contained in:
Jason Rasmussen 2025-01-21 16:47:48 -05:00 committed by GitHub
parent 8440f146e2
commit 36058b9b59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 11 additions and 56 deletions

View file

@ -7,6 +7,8 @@ import { AuditRepository } from 'src/repositories/audit.repository';
import { ConfigRepository } from 'src/repositories/config.repository';
import { ViewRepository } from 'src/repositories/view-repository';
export type DeepPartial<T> = T extends object ? { [K in keyof T]?: DeepPartial<T[K]> } : T;
export type AuthApiKey = {
id: string;
key: string;