@dubsdotapp/expo 0.2.44 → 0.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/types.ts +3 -1
package/dist/index.d.mts
CHANGED
|
@@ -343,7 +343,9 @@ interface LiveScore {
|
|
|
343
343
|
}
|
|
344
344
|
interface UFCFighter {
|
|
345
345
|
name: string;
|
|
346
|
-
|
|
346
|
+
headshotUrl: string | null;
|
|
347
|
+
flagUrl: string | null;
|
|
348
|
+
country: string | null;
|
|
347
349
|
abbreviation: string;
|
|
348
350
|
record: string | null;
|
|
349
351
|
winner: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -343,7 +343,9 @@ interface LiveScore {
|
|
|
343
343
|
}
|
|
344
344
|
interface UFCFighter {
|
|
345
345
|
name: string;
|
|
346
|
-
|
|
346
|
+
headshotUrl: string | null;
|
|
347
|
+
flagUrl: string | null;
|
|
348
|
+
country: string | null;
|
|
347
349
|
abbreviation: string;
|
|
348
350
|
record: string | null;
|
|
349
351
|
winner: boolean;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -419,7 +419,9 @@ export interface LiveScore {
|
|
|
419
419
|
|
|
420
420
|
export interface UFCFighter {
|
|
421
421
|
name: string;
|
|
422
|
-
|
|
422
|
+
headshotUrl: string | null;
|
|
423
|
+
flagUrl: string | null;
|
|
424
|
+
country: string | null;
|
|
423
425
|
abbreviation: string;
|
|
424
426
|
record: string | null;
|
|
425
427
|
winner: boolean;
|