UNPKG

169 BTypeScriptView Raw
1import type { PropertyKey } from "../index";
2
3declare function GetV<O extends {}, P extends PropertyKey>(O: O, P: P): P extends keyof O ? O[P] : unknown;
4export = GetV;