Files
2026-DEV-BUT3/node_modules/define-data-property/index.d.ts
T

12 lines
315 B
TypeScript
Raw Normal View History

2026-04-25 15:28:39 +02:00
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;