1 | import type { DataDescriptor, PropertyDescriptor } from "../index";
|
2 |
|
3 | declare function IsDataDescriptor<T = unknown>(Desc: PropertyDescriptor<T>): Desc is DataDescriptor<T>;
|
4 | declare function IsDataDescriptor(Desc: unknown): Desc is DataDescriptor;
|
5 | export = IsDataDescriptor;
|