ohctechv3/.svn/pristine/8d/8dfd551e6dc0ee2ffa8f9946f061957f85a9ab44.svn-base

12 lines
315 B
Plaintext
Raw Permalink Normal View History

2024-10-28 15:03:36 +05:30
declare function defineDataProperty(
obj: Record<PropertyKey, unknown>,
property: keyof typeof obj,
value: typeof obj[typeof property],
nonEnumerable?: boolean | null,
nonWritable?: boolean | null,
nonConfigurable?: boolean | null,
loose?: boolean
): void;
export = defineDataProperty;