Validation_Suite/validation-suite/frontend/atlas/node_modules/es-abstract-get/isPropertyKey.d.ts

9 lines
206 B
TypeScript

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