mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-06 21:45:47 +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];
|