@@ -284,7 +284,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
284
284
void* data = nullptr);
285
285
```
286
286
287
- - ` [in] name ` : Napi: Symbol that represents the name of a static
287
+ - ` [in] name ` : Napi:: Symbol that represents the name of a static
288
288
method for the class.
289
289
- ` [in] method ` : The native function that represents a static method of a
290
290
JavaScript class.
@@ -308,7 +308,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
308
308
```
309
309
310
310
method for the class.
311
- - `[in] name`: Napi:Symbol that represents the name of a static.
311
+ - `[in] name`: Napi:: Symbol that represents the name of a static.
312
312
- `[in] method`: The native function that represents a static method of a
313
313
JavaScript class.
314
314
- `[in] attributes`: The attributes associated with a particular property.
@@ -380,7 +380,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
380
380
381
381
- ` [in] method ` : The native function that represents a static method of a
382
382
JavaScript class.
383
- - ` [in] name ` : Napi: Symbol that represents the name of a static
383
+ - ` [in] name ` : Napi:: Symbol that represents the name of a static
384
384
method for the class.
385
385
- ` [in] attributes ` : The attributes associated with a particular property.
386
386
One or more of ` napi_property_attributes ` .
@@ -403,7 +403,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
403
403
404
404
- `[in] method`: The native function that represents a static method of a
405
405
JavaScript class.
406
- - `[in] name`: Napi:Symbol that represents the name of a static.
406
+ - `[in] name`: Napi:: Symbol that represents the name of a static.
407
407
- `[in] attributes`: The attributes associated with a particular property.
408
408
One or more of `napi_property_attributes`.
409
409
- `[in] data`: User-provided data passed into method when it is invoked.
@@ -452,7 +452,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticAccessor(Symbol name,
452
452
void* data = nullptr);
453
453
```
454
454
455
- - `[in] name`: Napi:Symbol that represents the name of a static accessor.
455
+ - `[in] name`: Napi:: Symbol that represents the name of a static accessor.
456
456
- `[in] getter`: The native function to call when a get access to the property
457
457
of a JavaScript class is performed.
458
458
- `[in] setter`: The native function to call when a set access to the property
@@ -508,7 +508,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticAccessor(Symbol name,
508
508
of a JavaScript class is performed.
509
509
- `[in] setter`: The native function to call when a set access to the property
510
510
of a JavaScript class is performed.
511
- - `[in] name`: Napi:Symbol that represents the name of a static accessor.
511
+ - `[in] name`: Napi:: Symbol that represents the name of a static accessor.
512
512
- `[in] attributes`: The attributes associated with a particular property.
513
513
One or more of `napi_property_attributes`.
514
514
- `[in] data`: User-provided data passed into getter or setter when
0 commit comments