UNPKG

242 BTypeScriptView Raw
1import type { PropertyDescriptor, PropertyKey } from "../index";
2
3declare function DefinePropertyOrThrow<O extends object>(
4 O: O,
5 P: PropertyKey,
6 desc: PropertyDescriptor & ThisType<O>,
7): boolean;
8export = DefinePropertyOrThrow;