@@ -186,11 +186,11 @@ partial interface JSValue {
186
186
[ Export ( "toUInt32" ) ]
187
187
uint ToUInt32 ( ) ;
188
188
189
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
189
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
190
190
[ Export ( "toInt64" ) ]
191
191
long ToInt64 ( ) ;
192
192
193
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
193
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
194
194
[ Export ( "toUInt64" ) ]
195
195
ulong ToUInt64 ( ) ;
196
196
@@ -342,46 +342,46 @@ partial interface JSValue {
342
342
bool IsSymbol { get ; }
343
343
344
344
[ Static ]
345
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
345
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
346
346
[ Export ( "valueWithNewBigIntFromString:inContext:" ) ]
347
347
[ return : NullAllowed ]
348
348
JSValue CreateNewBigInt ( string @string , JSContext context ) ;
349
349
350
350
[ Static ]
351
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
351
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
352
352
[ Export ( "valueWithNewBigIntFromInt64:inContext:" ) ]
353
353
[ return : NullAllowed ]
354
354
JSValue CreateNewBigInt ( long int64 , JSContext context ) ;
355
355
356
356
[ Static ]
357
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
357
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
358
358
[ Export ( "valueWithNewBigIntFromUInt64:inContext:" ) ]
359
359
[ return : NullAllowed ]
360
360
JSValue CreateNewBigInt ( ulong uint64 , JSContext context ) ;
361
361
362
362
[ Static ]
363
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
363
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
364
364
[ Export ( "valueWithNewBigIntFromDouble:inContext:" ) ]
365
365
[ return : NullAllowed ]
366
366
JSValue CreateNewBigInt ( double uint64 , JSContext context ) ;
367
367
368
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
368
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
369
369
[ Export ( "isBigInt" ) ]
370
370
bool IsBigInt { get ; }
371
371
372
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
372
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
373
373
[ Export ( "compareJSValue:" ) ]
374
374
JSRelationCondition Compare ( JSValue other ) ;
375
375
376
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
376
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
377
377
[ Export ( "compareInt64:" ) ]
378
378
JSRelationCondition Compare ( long other ) ;
379
379
380
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
380
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
381
381
[ Export ( "compareUInt64:" ) ]
382
382
JSRelationCondition Compare ( ulong other ) ;
383
383
384
- [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , NoMac ]
384
+ [ iOS ( 18 , 0 ) , MacCatalyst ( 18 , 0 ) , TV ( 18 , 0 ) , Mac ( 15 , 0 ) ]
385
385
[ Export ( "compareDouble:" ) ]
386
386
JSRelationCondition Compare ( double other ) ;
387
387
}
0 commit comments