UNPKG

269 BTypeScriptView Raw
1import type { PropertyDescriptor } from '../index';
2
3declare function isSamePropertyDescriptor(
4 ES: {
5 SameValue(x: unknown, y: unknown): boolean;
6 },
7 D1: PropertyDescriptor,
8 D2: PropertyDescriptor,
9): boolean;
10
11export = isSamePropertyDescriptor;