UNPKG

@types/es-abstract

Version:
5 lines (3 loc) 169 B
import type { PropertyKey } from "../index"; declare function GetV<O extends {}, P extends PropertyKey>(O: O, P: P): P extends keyof O ? O[P] : unknown; export = GetV;