租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
315 B

3 months ago
  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;