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

10 lines
206 B
TypeScript

declare function isPropertyKey(
argument: unknown,
): argument is isPropertyKey.PropertyKey;
declare namespace isPropertyKey {
export type PropertyKey = string | symbol;
}
export = isPropertyKey;