forked from levelasquez/react-native-android-open-settings
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
22 lines (22 loc) · 837 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
declare module "react-native-android-open-settings" {
const generalSettings: () => void;
const homeSettings: () => void;
const appDetailsSettings: () => void;
const wifiSettings: () => void;
const locationSourceSettings: () => void;
const wirelessSettings: () => void;
const airplaneModeSettings: () => void;
const apnSettings: () => void;
const bluetoothSettings: () => void;
const dateSettings: () => void;
const localeSettings: () => void;
const inputMethodSettings: () => void;
const displaySettings: () => void;
const securitySettings: () => void;
const internalStorageSettings: () => void;
const memoryCardSettings: () => void;
const accessibilitySettings: () => void;
const applicationSettings: () => void;
const deviceInfoSettings: () => void;
const appNotificationSettings: () => void;
}