File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
packages/default-storage/example/examples Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,10 @@ function Functional(): JSX.Element {
130130 }
131131 } )
132132 . then ( async ( ) => {
133- const AsyncStorageTestSupport = TurboModuleRegistry . get < AsyncStorageTestSupport > ( "AsyncStorageTestSupport" )
133+ const AsyncStorageTestSupport =
134+ TurboModuleRegistry . get < AsyncStorageTestSupport > (
135+ "AsyncStorageTestSupport"
136+ ) ;
134137
135138 for ( const [ currentName , test ] of Object . entries ( tests ) ) {
136139 const name = currentName + " with delegate" ;
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ function Merge(): JSX.Element {
110110 getConstants ( ) : object ;
111111 } ;
112112
113- const AsyncStorageTestSupport = TurboModuleRegistry . get < AsyncStorageTestSupport > ( "AsyncStorageTestSupport" )
113+ const AsyncStorageTestSupport =
114+ TurboModuleRegistry . get < AsyncStorageTestSupport > ( "AsyncStorageTestSupport" ) ;
114115
115116 return (
116117 < View >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { TurboModule } from "react-native";
33type AsyncStorageDelegate = ( value : boolean ) => void ;
44
55export type AsyncStorageTestSupport = TurboModule & {
6- test_setDelegate : ( delegate : AsyncStorageDelegate ) => void ;
7- test_unsetDelegate : ( delegate : AsyncStorageDelegate ) => void ;
8- getConstants ( ) : object ;
9- }
6+ test_setDelegate : ( delegate : AsyncStorageDelegate ) => void ;
7+ test_unsetDelegate : ( delegate : AsyncStorageDelegate ) => void ;
8+ getConstants ( ) : object ;
9+ } ;
You can’t perform that action at this time.
0 commit comments