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

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • 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.