UNPKG

236 BTypeScriptView Raw
1import type { PropertyKey } from "../index";
2
3/**
4 * @throws {TypeError} If the property can't be created.
5 */
6declare function CreateDataPropertyOrThrow(O: object, P: PropertyKey, V: unknown): true;
7export = CreateDataPropertyOrThrow;