Files
Homarr/src/types/helpers.ts
2023-08-06 14:12:39 +02:00

4 lines
120 B
TypeScript

export type OnlyKeysWithStructure<T, TStructure> = {
[P in keyof T]: T[P] extends TStructure ? P : never;
}[keyof T];