@livetiles/reach-plugin-types 0.5.0-preview.905 → 0.5.0-preview.906
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +15 -9
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -12067,6 +12067,10 @@ declare module "libs/shared/util/capacitor/src/mocks/MockBrowserPlugin" {
|
|
|
12067
12067
|
import { BrowserPlugin } from '@capacitor/browser';
|
|
12068
12068
|
export const mockBrowserPlugin: BrowserPlugin;
|
|
12069
12069
|
}
|
|
12070
|
+
declare module "libs/shared/util/capacitor/src/mocks/MockCameraPlugin" {
|
|
12071
|
+
import { CameraPlugin } from '@capacitor/camera';
|
|
12072
|
+
export const mockCameraPlugin: CameraPlugin;
|
|
12073
|
+
}
|
|
12070
12074
|
declare module "libs/shared/util/capacitor/src/mocks/MockKeyboardPlugin" {
|
|
12071
12075
|
import { KeyboardPlugin } from '@capacitor/keyboard';
|
|
12072
12076
|
export const mockKeyboardPlugin: KeyboardPlugin;
|
|
@@ -12139,6 +12143,7 @@ declare module "libs/shared/util/capacitor/src/WebStorage" {
|
|
|
12139
12143
|
declare module "libs/shared/util/capacitor/src/PluginLoader" {
|
|
12140
12144
|
import { AppPlugin } from '@capacitor/app';
|
|
12141
12145
|
import { BrowserPlugin } from '@capacitor/browser';
|
|
12146
|
+
import { CameraPlugin } from '@capacitor/camera';
|
|
12142
12147
|
import { DevicePlugin } from '@capacitor/device';
|
|
12143
12148
|
import { KeyboardPlugin } from '@capacitor/keyboard';
|
|
12144
12149
|
import { NetworkPlugin } from '@capacitor/network';
|
|
@@ -12152,19 +12157,20 @@ declare module "libs/shared/util/capacitor/src/PluginLoader" {
|
|
|
12152
12157
|
import { PushClientPlugin } from "libs/shared/util/capacitor-plugins/push-client/src/index";
|
|
12153
12158
|
import { EnvironmentConfig } from "libs/shared/util/environment/src/index";
|
|
12154
12159
|
export interface CondensePluginRegistry {
|
|
12155
|
-
Storage: PreferencesPlugin;
|
|
12156
|
-
Device: DevicePlugin;
|
|
12157
12160
|
App: AppPlugin;
|
|
12158
|
-
Keyboard: KeyboardPlugin;
|
|
12159
|
-
StatusBar: StatusBarPlugin;
|
|
12160
|
-
Share: SharePlugin;
|
|
12161
|
-
SplashScreen: SplashScreenPlugin;
|
|
12162
|
-
Network: NetworkPlugin;
|
|
12163
|
-
PushClient?: PushClientPlugin;
|
|
12164
12161
|
AppInfo?: AppInfoPlugin;
|
|
12162
|
+
Browser: BrowserPlugin;
|
|
12163
|
+
Camera: CameraPlugin;
|
|
12164
|
+
Device: DevicePlugin;
|
|
12165
|
+
Keyboard: KeyboardPlugin;
|
|
12165
12166
|
MsalClient?: MsalClientPlugin;
|
|
12167
|
+
Network: NetworkPlugin;
|
|
12166
12168
|
OpenIdClient?: OpenIdClientPlugin;
|
|
12167
|
-
|
|
12169
|
+
PushClient?: PushClientPlugin;
|
|
12170
|
+
Share: SharePlugin;
|
|
12171
|
+
SplashScreen: SplashScreenPlugin;
|
|
12172
|
+
StatusBar: StatusBarPlugin;
|
|
12173
|
+
Storage: PreferencesPlugin;
|
|
12168
12174
|
}
|
|
12169
12175
|
let Plugins: CondensePluginRegistry;
|
|
12170
12176
|
export { Plugins };
|