-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.d.ts
More file actions
30 lines (24 loc) · 733 Bytes
/
Copy pathenv.d.ts
File metadata and controls
30 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// env.d.ts
declare module '@env' {
export const SUPABASE_URL: string;
export const SUPABASE_KEY: string;
export const API_KEY: string;
}
declare module 'react-native-vector-icons/MaterialIcons' {
import { Icon } from 'react-native-vector-icons/Icon';
export default Icon;
}
declare module 'react-native-vector-icons/Ionicons' {
import { Icon } from 'react-native-vector-icons/Icon';
export default Icon;
}
declare module 'react-native-vector-icons/Feather' {
import { Icon } from 'react-native-vector-icons/Icon';
export default Icon;
}
declare module "*.svg" {
import * as React from "react";
import { SvgProps } from "react-native-svg";
const content: React.FC<SvgProps>;
export default content;
}