getInferredName.d.ts 133 B

12345
  1. declare function getInferredName(key: PropertyKey): string;
  2. declare const x: typeof getInferredName | undefined | null;
  3. export = x;