31 lines
762 B
TypeScript
31 lines
762 B
TypeScript
import { operate, select, fetchRows, count, aggregate } from './crud';
|
|
import { amap } from './amap';
|
|
import { getTranslations } from './locales';
|
|
import { registerPorts, clearPorts, importEntity, exportEntity, getImportationTemplate } from './port';
|
|
import { geoService, registerGetMapService } from './geo';
|
|
import { loadRelations } from './relation';
|
|
import { crossBridge } from './utils';
|
|
|
|
const aspectDict = {
|
|
operate,
|
|
select,
|
|
count,
|
|
aggregate,
|
|
fetchRows,
|
|
amap,
|
|
getTranslations,
|
|
importEntity,
|
|
exportEntity,
|
|
getImportationTemplate,
|
|
geoService,
|
|
loadRelations,
|
|
crossBridge,
|
|
};
|
|
|
|
export default aspectDict;
|
|
export * from './AspectDict';
|
|
export {
|
|
registerPorts,
|
|
clearPorts,
|
|
registerGetMapService,
|
|
}; |