oak-common-aspect/lib/index.d.ts

26 lines
959 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 { searchPoi } from './geo';
import { loadRelations } from './relation';
import { crossBridge } from './utils';
declare const aspectDict: {
operate: typeof operate;
select: typeof select;
count: typeof count;
aggregate: typeof aggregate;
fetchRows: typeof fetchRows;
amap: typeof amap;
getTranslations: typeof getTranslations;
importEntity: typeof importEntity;
exportEntity: typeof exportEntity;
getImportationTemplate: typeof getImportationTemplate;
searchPoi: typeof searchPoi;
loadRelations: typeof loadRelations;
crossBridge: typeof crossBridge;
};
export default aspectDict;
export * from './AspectDict';
export { registerPorts, clearPorts, };