mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-23 15:48:33 +00:00
4 lines
93 B
TypeScript
4 lines
93 B
TypeScript
export type KeysMatching<T, V> = {
|
|
[K in keyof T]-?: T[K] extends V ? K : never
|
|
}[keyof T]
|