Expose dark mode flag to plugin authors

Summary:
Should be available now with
```
getFlipperLib().settings().isDarkMode
```

Differential Revision: D46685851

fbshipit-source-id: 0777437b7ca06051cc3fd4dc1b794242f453f2b5
This commit is contained in:
Andrey Goncharov
2023-06-13 08:18:14 -07:00
committed by Facebook GitHub Bot
parent bf2f1283d3
commit 84e481e7e9
6 changed files with 24 additions and 1 deletions

View File

@@ -264,6 +264,7 @@ test('log listeners are resumed and suspended automatically - 1', async () => {
enableMenuEntries: jest.fn(),
selectPlugin: jest.fn(),
showNotification: jest.fn(),
settings: jest.fn(),
});
device.loadDevicePlugins(
@@ -352,6 +353,7 @@ test('log listeners are resumed and suspended automatically - 2', async () => {
enableMenuEntries: jest.fn(),
selectPlugin: jest.fn(),
showNotification: jest.fn(),
settings: jest.fn(),
});
device.loadDevicePlugins(

View File

@@ -31,7 +31,10 @@ export function baseFlipperLibImplementation(
| 'showNotification'
| 'createPaste'
| 'intern'
> & {intern: Omit<FlipperLib['intern'], 'currentUser' | 'isConnected'>} {
| 'settings'
> & {
intern: Omit<FlipperLib['intern'], 'currentUser' | 'isConnected'>;
} {
return {
isFB: !constants.IS_PUBLIC_BUILD,
logger,