File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/notebooks/deepnote/integrations Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { IEncryptedStorage } from '../../../platform/common/application/types';
55import { IAsyncDisposableRegistry } from '../../../platform/common/types' ;
66import { logger } from '../../../platform/logging' ;
77import { IntegrationConfig , IntegrationType } from './integrationTypes' ;
8+ import { IIntegrationStorage } from './types' ;
89
910const INTEGRATION_SERVICE_NAME = 'deepnote-integrations' ;
1011
@@ -14,7 +15,7 @@ const INTEGRATION_SERVICE_NAME = 'deepnote-integrations';
1415 * Storage is scoped to the user's machine and shared across all deepnote projects.
1516 */
1617@injectable ( )
17- export class IntegrationStorage {
18+ export class IntegrationStorage implements IIntegrationStorage {
1819 private readonly cache : Map < string , IntegrationConfig > = new Map ( ) ;
1920
2021 private cacheLoaded = false ;
You can’t perform that action at this time.
0 commit comments