Files
nur-falah/node_modules/es-abstract-get/Get.d.ts
T

12 lines
194 B
TypeScript

import { PropertyKey } from './isPropertyKey';
declare function Get<
T extends object,
K extends keyof T & PropertyKey,
>(
O: T,
P: K,
): T[keyof T] | undefined;
export = Get;