Browse Source

Cleanup

feat/data-source-css-rule
Artur Arseniev 1 year ago
committed by GitHub
parent
commit
9c99bd54a2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      packages/core/src/data_sources/index.ts

10
packages/core/src/data_sources/index.ts

@ -42,8 +42,6 @@ import { get, stringToPath } from '../utils/mixins';
import DataRecord from './model/DataRecord';
import DataSource from './model/DataSource';
import DataSources from './model/DataSources';
import DataVariableListenerManager, { DataVariableListenerManagerOptions } from './model/DataVariableListenerManager';
import DataVariable from './model/DataVariable';
import { DataSourcesEvents, DataSourceProps } from './types';
import { Events } from 'backbone';
@ -180,12 +178,4 @@ export default class DataSourceManager extends ItemManagerModule<ModuleConfig, D
load(data: any) {
return this.loadProjectData(data);
}
newDataVariableListenerManager(options: Omit<DataVariableListenerManagerOptions, 'em'>) {
return new DataVariableListenerManager({ ...options, em: this.em });
}
newDataVariable(options: any) {
return new DataVariable(options, { em: this.em });
}
}

Loading…
Cancel
Save