Files
Housekeeping-web-admin/node_modules/es-abstract-get/isPropertyKey.d.ts
T
2026-06-24 09:48:54 +02:00

10 lines
206 B
TypeScript

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