@@ -89,6 +89,9 @@ declare class FBSDKDeviceLoginManager extends NSObject implements NSNetServiceDe
89
89
90
90
isMemberOfClass ( aClass : typeof NSObject ) : boolean ;
91
91
92
+ /**
93
+ * @since 7.0
94
+ */
92
95
netServiceDidAcceptConnectionWithInputStreamOutputStream ( sender : NSNetService , inputStream : NSInputStream , outputStream : NSOutputStream ) : void ;
93
96
94
97
netServiceDidNotPublish ( sender : NSNetService , errorDict : NSDictionary < string , number > ) : void ;
@@ -154,26 +157,55 @@ declare class FBSDKLoginButton extends FBSDKButton {
154
157
155
158
static appearance ( ) : FBSDKLoginButton ; // inherited from UIAppearance
156
159
160
+ /**
161
+ * @since 8.0
162
+ */
157
163
static appearanceForTraitCollection ( trait : UITraitCollection ) : FBSDKLoginButton ; // inherited from UIAppearance
158
164
165
+ /**
166
+ * @since 8.0
167
+ * @deprecated 9.0
168
+ */
159
169
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : FBSDKLoginButton ; // inherited from UIAppearance
160
170
161
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKLoginButton ; // inherited from UIAppearance
171
+ /**
172
+ * @since 9.0
173
+ */
174
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKLoginButton ; // inherited from UIAppearance
162
175
176
+ /**
177
+ * @since 5.0
178
+ * @deprecated 9.0
179
+ */
163
180
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : FBSDKLoginButton ; // inherited from UIAppearance
164
181
165
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKLoginButton ; // inherited from UIAppearance
182
+ /**
183
+ * @since 9.0
184
+ */
185
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKLoginButton ; // inherited from UIAppearance
166
186
187
+ /**
188
+ * @since 15.0
189
+ */
167
190
static buttonWithConfigurationPrimaryAction ( configuration : UIButtonConfiguration , primaryAction : UIAction ) : FBSDKLoginButton ; // inherited from UIButton
168
191
169
192
static buttonWithType ( buttonType : UIButtonType ) : FBSDKLoginButton ; // inherited from UIButton
170
193
194
+ /**
195
+ * @since 14.0
196
+ */
171
197
static buttonWithTypePrimaryAction ( buttonType : UIButtonType , primaryAction : UIAction ) : FBSDKLoginButton ; // inherited from UIButton
172
198
173
199
static new ( ) : FBSDKLoginButton ; // inherited from NSObject
174
200
201
+ /**
202
+ * @since 13.0
203
+ */
175
204
static systemButtonWithImageTargetAction ( image : UIImage , target : any , action : string ) : FBSDKLoginButton ; // inherited from UIButton
176
205
206
+ /**
207
+ * @since 14.0
208
+ */
177
209
static systemButtonWithPrimaryAction ( primaryAction : UIAction ) : FBSDKLoginButton ; // inherited from UIButton
178
210
179
211
authType : string ;
@@ -252,6 +284,8 @@ declare class FBSDKLoginCompletionParameters extends NSObject {
252
284
profile : FBSDKProfile ;
253
285
254
286
userID : string ;
287
+
288
+ userTokenNonce : string ;
255
289
}
256
290
257
291
declare class FBSDKLoginConfiguration extends NSObject {
@@ -421,15 +455,32 @@ declare class FBSDKLoginTooltipView extends FBSDKTooltipView {
421
455
422
456
static appearance ( ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
423
457
458
+ /**
459
+ * @since 8.0
460
+ */
424
461
static appearanceForTraitCollection ( trait : UITraitCollection ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
425
462
463
+ /**
464
+ * @since 8.0
465
+ * @deprecated 9.0
466
+ */
426
467
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
427
468
428
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
469
+ /**
470
+ * @since 9.0
471
+ */
472
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
429
473
474
+ /**
475
+ * @since 5.0
476
+ * @deprecated 9.0
477
+ */
430
478
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
431
479
432
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
480
+ /**
481
+ * @since 9.0
482
+ */
483
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKLoginTooltipView ; // inherited from UIAppearance
433
484
434
485
static new ( ) : FBSDKLoginTooltipView ; // inherited from NSObject
435
486
@@ -482,15 +533,32 @@ declare class FBSDKTooltipView extends UIView {
482
533
483
534
static appearance ( ) : FBSDKTooltipView ; // inherited from UIAppearance
484
535
536
+ /**
537
+ * @since 8.0
538
+ */
485
539
static appearanceForTraitCollection ( trait : UITraitCollection ) : FBSDKTooltipView ; // inherited from UIAppearance
486
540
541
+ /**
542
+ * @since 8.0
543
+ * @deprecated 9.0
544
+ */
487
545
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : FBSDKTooltipView ; // inherited from UIAppearance
488
546
489
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKTooltipView ; // inherited from UIAppearance
547
+ /**
548
+ * @since 9.0
549
+ */
550
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKTooltipView ; // inherited from UIAppearance
490
551
552
+ /**
553
+ * @since 5.0
554
+ * @deprecated 9.0
555
+ */
491
556
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : FBSDKTooltipView ; // inherited from UIAppearance
492
557
493
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : FBSDKTooltipView ; // inherited from UIAppearance
558
+ /**
559
+ * @since 9.0
560
+ */
561
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : FBSDKTooltipView ; // inherited from UIAppearance
494
562
495
563
static new ( ) : FBSDKTooltipView ; // inherited from NSObject
496
564
0 commit comments