@dubsdotapp/expo 0.5.31 → 0.5.32
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 +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +28 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -124,6 +124,7 @@ export {
|
|
|
124
124
|
useJackpot,
|
|
125
125
|
useJackpotHistory,
|
|
126
126
|
useEnterJackpot,
|
|
127
|
+
useCredits,
|
|
127
128
|
} from './hooks';
|
|
128
129
|
export type {
|
|
129
130
|
CreateGameMutationResult,
|
|
@@ -145,6 +146,7 @@ export type {
|
|
|
145
146
|
UseJackpotResult,
|
|
146
147
|
UseJackpotHistoryResult,
|
|
147
148
|
EnterJackpotMutationResult,
|
|
149
|
+
UseCreditsResult,
|
|
148
150
|
} from './hooks';
|
|
149
151
|
|
|
150
152
|
export { useHighlights, useShorts } from './hooks';
|