source: node_modules/define-data-property/index.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 315 bytes
Line 
1
2declare function defineDataProperty(
3 obj: Record<PropertyKey, unknown>,
4 property: keyof typeof obj,
5 value: typeof obj[typeof property],
6 nonEnumerable?: boolean | null,
7 nonWritable?: boolean | null,
8 nonConfigurable?: boolean | null,
9 loose?: boolean
10): void;
11
12export = defineDataProperty;
Note: See TracBrowser for help on using the repository browser.