c87b252e2a626a6dd52eaa0776bd36c5c1c31cbab581288509615c4fbbcd16c1b71d93687b8c0140b99047a73605ccc5c04870769a9c7bfef67c45fceb6cde 315 B

123456789101112
  1. declare function defineDataProperty(
  2. obj: Record<PropertyKey, unknown>,
  3. property: keyof typeof obj,
  4. value: typeof obj[typeof property],
  5. nonEnumerable?: boolean | null,
  6. nonWritable?: boolean | null,
  7. nonConfigurable?: boolean | null,
  8. loose?: boolean
  9. ): void;
  10. export = defineDataProperty;