forked from berty/berty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.d.ts
33 lines (26 loc) · 821 Bytes
/
global.d.ts
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
30
31
32
33
declare module '*.svg' {
import React from 'react'
import { SvgProps } from 'react-native-svg'
const content: React.FC<SvgProps>
export default content
}
declare module '*.ttf'
declare var __DEV__: boolean | undefined
declare module 'react-native-in-app-notification'
declare module 'linkify-it'
declare module 'react-native-flags'
declare module 'react-native-emoji-board'
declare module 'react-native-android-keyboard-adjust'
declare module 'emoji-datasource'
declare module 'eventemitter3'
declare module 'google-palette' {
const content: (type: string, count: number) => string[]
export default content
}
declare module '*.png'
declare module '*.gif'
declare module '*.json'
declare module 'react-native-restart' {
import RNRestart from 'react-native-restart/lib/typescript'
export default RNRestart
}