12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
import { operate, select } from './crud';
|
|
import { amap } from './amap';
|
|
import { getTranslations } from './locales';
|
|
declare const aspectDict: {
|
|
operate: typeof operate;
|
|
select: typeof select;
|
|
amap: typeof amap;
|
|
getTranslations: typeof getTranslations;
|
|
};
|
|
export default aspectDict;
|
|
export * from './AspectDict';
|