enable react native strict types

This commit is contained in:
Samuel Newman
2026-08-13 11:42:09 +03:00
parent 6b35d3de1c
commit 8677387c23
104 changed files with 457 additions and 506 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export const IS_GLASS_AVAILABLE =
*/
export const GlassView = IS_GLASS_AVAILABLE ? InnerGlassView : FallbackView
export type GlassViewProps = ExpoGlassViewProps & {
export type GlassViewProps = Omit<ExpoGlassViewProps, 'ref'> & {
fallbackStyle?: StyleProp<ViewStyle>
}