File tree Expand file tree Collapse file tree
apps/src/shared/gamma/containers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export type StackRouteConfig = {
2525export type StackRoute = Omit < StackRouteConfig , 'Component' > & {
2626 activityMode : StackScreenProps [ 'activityMode' ] ;
2727 routeKey : StackScreenProps [ 'screenKey' ] ;
28- isMarkedForDismissal : Boolean ; // whether this route is during or after dismissal process
28+ isMarkedForDismissal : boolean ; // whether this route is during or after dismissal process
2929} ;
3030
3131/// StackContainer props
Original file line number Diff line number Diff line change 11import type { TabRoute , TabsNavigationMethods } from './TabsContainer.types' ;
2+ import React from 'react' ;
23
34export type TabsContainerItemProps = {
45 route : TabRoute ;
56 navMethods : TabsNavigationMethods ;
67 isSelected : boolean ;
78 pendingForUpdate : boolean ;
89 Component : React . ComponentType ;
9- }
10-
10+ } ;
You can’t perform that action at this time.
0 commit comments