1 | import type { PropertyDescriptor } from "../index";
|
2 |
|
3 | declare function IsPropertyDescriptor(
|
4 | ES: {
|
5 | Type(O: unknown): string | undefined;
|
6 | IsAccessorDescriptor(Desc: unknown): boolean;
|
7 | IsDataDescriptor(Desc: unknown): boolean;
|
8 | },
|
9 | Desc: unknown,
|
10 | ): Desc is PropertyDescriptor;
|
11 |
|
12 | export = IsPropertyDescriptor;
|