index.ts 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import auditLogs from "./auditLogs.json";
  2. import auth from "./auth.json";
  3. import bigScreen from "./bigScreen.json";
  4. import common from "./common.json";
  5. import customs from "./customs.json";
  6. import dashboard from "./dashboard.json";
  7. import errors from "./errors.json";
  8. import forms from "./forms.json";
  9. import internal from "./internal.json";
  10. import ipDetails from "./ipDetails.json";
  11. import myUsage from "./myUsage.json";
  12. import notifications from "./notifications.json";
  13. import providerChain from "./provider-chain.json";
  14. import providers from "./providers.json";
  15. import quota from "./quota.json";
  16. import settings from "./settings";
  17. import ui from "./ui.json";
  18. import usage from "./usage.json";
  19. import users from "./users.json";
  20. import validation from "./validation.json";
  21. export default {
  22. auditLogs,
  23. auth,
  24. bigScreen,
  25. common,
  26. customs,
  27. dashboard,
  28. errors,
  29. forms,
  30. ipDetails,
  31. notifications,
  32. "provider-chain": providerChain,
  33. providers,
  34. quota,
  35. myUsage,
  36. settings,
  37. ui,
  38. usage,
  39. users,
  40. validation,
  41. internal,
  42. };