mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 17:26:26 +01:00
4 lines
120 B
TypeScript
4 lines
120 B
TypeScript
export type OnlyKeysWithStructure<T, TStructure> = {
|
|
[P in keyof T]: T[P] extends TStructure ? P : never;
|
|
}[keyof T];
|