index.d.ts 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // This file is created by egg-ts-helper@1.33.0
  2. // Do not modify this file!!!!!!!!!
  3. import 'egg';
  4. import ExportBase = require('../../../app/controller/base');
  5. import ExportHomeAddress = require('../../../app/controller/home/address');
  6. import ExportHomeCart = require('../../../app/controller/home/cart');
  7. import ExportHomeHome = require('../../../app/controller/home/home');
  8. import ExportHomeOrder = require('../../../app/controller/home/order');
  9. import ExportHomePartnerInfo = require('../../../app/controller/home/partnerInfo');
  10. import ExportHomeProductCategory = require('../../../app/controller/home/productCategory');
  11. import ExportHomeProducts = require('../../../app/controller/home/products');
  12. import ExportHomeProxyApplyLogs = require('../../../app/controller/home/ProxyApplyLogs');
  13. import ExportHomeRelInviter = require('../../../app/controller/home/RelInviter');
  14. import ExportHomeShop = require('../../../app/controller/home/shop');
  15. import ExportHomeStatistic = require('../../../app/controller/home/statistic');
  16. import ExportHomeUser = require('../../../app/controller/home/user');
  17. import ExportManagerAccesss = require('../../../app/controller/manager/accesss');
  18. import ExportManagerAdminUser = require('../../../app/controller/manager/admin_user');
  19. import ExportManagerArticles = require('../../../app/controller/manager/articles');
  20. import ExportManagerArticlesCategory = require('../../../app/controller/manager/articles_category');
  21. import ExportManagerConfigs = require('../../../app/controller/manager/configs');
  22. import ExportManagerLogin = require('../../../app/controller/manager/login');
  23. import ExportManagerManager = require('../../../app/controller/manager/manager');
  24. import ExportManagerRoles = require('../../../app/controller/manager/roles');
  25. import ExportWechatWechat = require('../../../app/controller/wechat/wechat');
  26. import ExportManagerShopsOrders = require('../../../app/controller/manager/shops/orders');
  27. import ExportManagerShopsPaysConfig = require('../../../app/controller/manager/shops/pays_config');
  28. import ExportManagerShopsProducts = require('../../../app/controller/manager/shops/products');
  29. import ExportManagerShopsProductBrands = require('../../../app/controller/manager/shops/product_brands');
  30. import ExportManagerShopsProductCategory = require('../../../app/controller/manager/shops/product_category');
  31. import ExportManagerShopsProductSuppliers = require('../../../app/controller/manager/shops/product_suppliers');
  32. import ExportManagerShopsProductTypes = require('../../../app/controller/manager/shops/product_types');
  33. import ExportManagerShopsProductTypesItem = require('../../../app/controller/manager/shops/product_types_item');
  34. import ExportManagerShopsShippingsConfig = require('../../../app/controller/manager/shops/shippings_config');
  35. import ExportManagerShopsUsers = require('../../../app/controller/manager/shops/users');
  36. declare module 'egg' {
  37. interface IController {
  38. base: ExportBase;
  39. home: {
  40. address: ExportHomeAddress;
  41. cart: ExportHomeCart;
  42. home: ExportHomeHome;
  43. order: ExportHomeOrder;
  44. partnerInfo: ExportHomePartnerInfo;
  45. productCategory: ExportHomeProductCategory;
  46. products: ExportHomeProducts;
  47. proxyApplyLogs: ExportHomeProxyApplyLogs;
  48. relInviter: ExportHomeRelInviter;
  49. shop: ExportHomeShop;
  50. statistic: ExportHomeStatistic;
  51. user: ExportHomeUser;
  52. }
  53. manager: {
  54. accesss: ExportManagerAccesss;
  55. adminUser: ExportManagerAdminUser;
  56. articles: ExportManagerArticles;
  57. articlesCategory: ExportManagerArticlesCategory;
  58. configs: ExportManagerConfigs;
  59. login: ExportManagerLogin;
  60. manager: ExportManagerManager;
  61. roles: ExportManagerRoles;
  62. shops: {
  63. orders: ExportManagerShopsOrders;
  64. paysConfig: ExportManagerShopsPaysConfig;
  65. products: ExportManagerShopsProducts;
  66. productBrands: ExportManagerShopsProductBrands;
  67. productCategory: ExportManagerShopsProductCategory;
  68. productSuppliers: ExportManagerShopsProductSuppliers;
  69. productTypes: ExportManagerShopsProductTypes;
  70. productTypesItem: ExportManagerShopsProductTypesItem;
  71. shippingsConfig: ExportManagerShopsShippingsConfig;
  72. users: ExportManagerShopsUsers;
  73. }
  74. }
  75. wechat: {
  76. wechat: ExportWechatWechat;
  77. }
  78. }
  79. }