1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Fixed lib import statements

This commit is contained in:
Laurent Cozic 2021-08-12 19:26:35 +01:00
parent 14bf50fdc9
commit 77a8ab8125
2 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,8 @@ import bridge from '../services/bridge';
import shared from '@joplin/lib/components/shared/encryption-config-shared';
import { MasterKeyEntity } from '@joplin/lib/services/database/types';
import { getEncryptionEnabled, SyncInfo } from '@joplin/lib/services/synchronizer/syncInfoUtils';
import { toggleAndSetupEncryption } from '../../lib/services/e2ee/utils';
import MasterKey from '../../lib/models/MasterKey';
import { toggleAndSetupEncryption } from '@joplin/lib/services/e2ee/utils';
import MasterKey from '@joplin/lib/models/MasterKey';
interface Props {}

View File

@ -14,7 +14,7 @@ import { MasterKeyEntity } from '@joplin/lib/services/database/types';
import { State } from '@joplin/lib/reducer';
import { SyncInfo } from '@joplin/lib/services/synchronizer/syncInfoUtils';
import { setupAndDisableEncryption, toggleAndSetupEncryption } from '@joplin/lib/services/e2ee/utils';
import MasterKey from '../../../lib/models/MasterKey';
import MasterKey from '@joplin/lib/models/MasterKey';
interface Props {}