@@ -132,7 +132,8 @@ const UiReactWithSchemas2 = UiReact as UiReact.WithSchemas<
132132> ;
133133const { useStore : useStore2 } = UiReactWithSchemas2 ;
134134
135- const _Getters = ( ) => {
135+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
136+ const Getters = ( ) => {
136137 const storeWithSchemas = useCreateStore ( ( ) =>
137138 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
138139 ) ;
@@ -219,7 +220,8 @@ const _Getters = () => {
219220 useValue ( 'v2' ) ; // !
220221} ;
221222
222- const _Setters = ( ) => {
223+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
224+ const Setters = ( ) => {
223225 useSetTablesCallback (
224226 ( _e , store ) => {
225227 store . getTables ( ) . t1 ;
@@ -457,7 +459,8 @@ const _Setters = () => {
457459 ) ;
458460} ;
459461
460- const _Deleters = ( ) => {
462+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
463+ const Deleters = ( ) => {
461464 useDelTablesCallback ( undefined , ( store ) => {
462465 store . getTables ( ) . t1 ;
463466 store . getTables ( ) . t2 ; // !
@@ -511,7 +514,8 @@ const _Deleters = () => {
511514 useDelValueCallback ( ( ) => 'v2' ) ; // !
512515} ;
513516
514- const _Listeners = ( ) => {
517+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
518+ const Listeners = ( ) => {
515519 useHasTablesListener ( ( store ) => {
516520 store . getTables ( ) . t1 ;
517521 store . getTables ( ) . t2 ; // !
@@ -1218,7 +1222,8 @@ const _Listeners = () => {
12181222 useValueListener ( 'v2' , ( ) => null ) ; // !
12191223} ;
12201224
1221- const _Metrics = ( ) => {
1225+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1226+ const Metrics = ( ) => {
12221227 const metricsWithSchema = useCreateMetrics (
12231228 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
12241229 createMetrics ,
@@ -1236,7 +1241,8 @@ const _Metrics = () => {
12361241 } ) ;
12371242} ;
12381243
1239- const _Indexes = ( ) => {
1244+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1245+ const Indexes = ( ) => {
12401246 const indexesWithSchema = useCreateIndexes (
12411247 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
12421248 createIndexes ,
@@ -1259,7 +1265,8 @@ const _Indexes = () => {
12591265 } ) ;
12601266} ;
12611267
1262- const _Relationships = ( ) => {
1268+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1269+ const Relationships = ( ) => {
12631270 const relationshipsWithSchema = useCreateRelationships (
12641271 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
12651272 createRelationships ,
@@ -1287,7 +1294,8 @@ const _Relationships = () => {
12871294 } ) ;
12881295} ;
12891296
1290- const _Queries = ( ) => {
1297+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1298+ const Queries = ( ) => {
12911299 const queriesWithSchema = useCreateQueries (
12921300 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
12931301 createQueries ,
@@ -1330,7 +1338,8 @@ const _Queries = () => {
13301338 } ) ;
13311339} ;
13321340
1333- const _Checkpoints = ( ) => {
1341+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1342+ const Checkpoints = ( ) => {
13341343 const checkpointsWithSchema = useCreateCheckpoints (
13351344 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
13361345 createCheckpoints ,
@@ -1373,7 +1382,8 @@ const _Checkpoints = () => {
13731382 } ) ;
13741383} ;
13751384
1376- const _Persister = ( ) => {
1385+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1386+ const Persister = ( ) => {
13771387 const persisterWithSchema = useCreatePersister (
13781388 createStore ( ) . setSchema ( tablesSchema , valuesSchema ) ,
13791389 ( store ) => createFilePersister ( store , '' ) ,
@@ -1500,7 +1510,8 @@ const PoorValueView = ({valueId}: {readonly valueId: 'v1' | 'v2'}) => (
15001510 < b > { valueId } </ b >
15011511) ;
15021512
1503- const _App = ( ) => (
1513+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1514+ const App = ( ) => (
15041515 < >
15051516 < TablesView />
15061517 < TablesView tableComponent = { GoodTableView } />
0 commit comments