Fix linting and typescript errors

This commit is contained in:
Lei Nelissen
2022-01-01 22:36:05 +01:00
parent 4ecf978505
commit 4e6a758d83
19 changed files with 63 additions and 40 deletions
+3
View File
@@ -0,0 +1,3 @@
declare module '@env' {
export const SENTRY_DSN: string;
}
+5
View File
@@ -0,0 +1,5 @@
declare module '*.svg' {
import { SvgProps } from 'react-native-svg';
const content: React.FC<SvgProps>;
export default content;
}