1 | import type { PropertyDescriptor, PropertyKey } from "../index";
|
2 |
|
3 | declare function ValidateAndApplyPropertyDescriptor(
|
4 | O: undefined,
|
5 | P: unknown,
|
6 | extensible: boolean,
|
7 | Desc: PropertyDescriptor & ThisType<any>,
|
8 | current?: PropertyDescriptor & ThisType<any>,
|
9 | ): boolean;
|
10 | declare function ValidateAndApplyPropertyDescriptor(
|
11 | O: object | undefined,
|
12 | P: PropertyKey,
|
13 | extensible: boolean,
|
14 | Desc: PropertyDescriptor & ThisType<any>,
|
15 | current?: PropertyDescriptor & ThisType<any>,
|
16 | ): boolean;
|
17 | export = ValidateAndApplyPropertyDescriptor;
|