|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
315 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 |
|
|---|
| 2 | declare 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 |
|
|---|
| 12 | export = defineDataProperty; |
|---|
Note:
See
TracBrowser
for help on using the repository browser.