You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
salary-management-oneself/src/api/index.ts

26 lines
541 B
TypeScript

import AccountService from "./account.service";
import GlobalService from "./global.service";
import MenuService from "./menu.service";
import SettingService from "./setting.service";
import DictionaryService from "./dictionary.service";
import CalculateService from "./calculate.service";
3 years ago
export {
AccountService,
GlobalService,
MenuService,
SettingService,
DictionaryService,
CalculateService
3 years ago
};
export default {
AccountService,
GlobalService,
MenuService,
SettingService,
DictionaryService,
CalculateService
3 years ago
};