index.d.ts 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 ExportHomeUser = require('../../../app/controller/home/user');
  16. import ExportManagerAccesss = require('../../../app/controller/manager/accesss');
  17. import ExportManagerAdminUser = require('../../../app/controller/manager/admin_user');
  18. import ExportManagerArticles = require('../../../app/controller/manager/articles');
  19. import ExportManagerArticlesCategory = require('../../../app/controller/manager/articles_category');
  20. import ExportManagerConfigs = require('../../../app/controller/manager/configs');
  21. import ExportManagerLogin = require('../../../app/controller/manager/login');
  22. import ExportManagerManager = require('../../../app/controller/manager/manager');
  23. import ExportManagerRoles = require('../../../app/controller/manager/roles');
  24. import ExportWechatWechat = require('../../../app/controller/wechat/wechat');
  25. import ExportManagerShopsOrders = require('../../../app/controller/manager/shops/orders');
  26. import ExportManagerShopsPaysConfig = require('../../../app/controller/manager/shops/pays_config');
  27. import ExportManagerShopsProducts = require('../../../app/controller/manager/shops/products');
  28. import ExportManagerShopsProductBrands = require('../../../app/controller/manager/shops/product_brands');
  29. import ExportManagerShopsProductCategory = require('../../../app/controller/manager/shops/product_category');
  30. import ExportManagerShopsProductSuppliers = require('../../../app/controller/manager/shops/product_suppliers');
  31. import ExportManagerShopsProductTypes = require('../../../app/controller/manager/shops/product_types');
  32. import ExportManagerShopsProductTypesItem = require('../../../app/controller/manager/shops/product_types_item');
  33. import ExportManagerShopsShippingsConfig = require('../../../app/controller/manager/shops/shippings_config');
  34. import ExportManagerShopsUsers = require('../../../app/controller/manager/shops/users');
  35. declare module 'egg' {
  36. interface IController {
  37. base: ExportBase;
  38. home: {
  39. address: ExportHomeAddress;
  40. cart: ExportHomeCart;
  41. home: ExportHomeHome;
  42. order: ExportHomeOrder;
  43. partnerInfo: ExportHomePartnerInfo;
  44. productCategory: ExportHomeProductCategory;
  45. products: ExportHomeProducts;
  46. proxyApplyLogs: ExportHomeProxyApplyLogs;
  47. relInviter: ExportHomeRelInviter;
  48. shop: ExportHomeShop;
  49. user: ExportHomeUser;
  50. }
  51. manager: {
  52. accesss: ExportManagerAccesss;
  53. adminUser: ExportManagerAdminUser;
  54. articles: ExportManagerArticles;
  55. articlesCategory: ExportManagerArticlesCategory;
  56. configs: ExportManagerConfigs;
  57. login: ExportManagerLogin;
  58. manager: ExportManagerManager;
  59. roles: ExportManagerRoles;
  60. shops: {
  61. orders: ExportManagerShopsOrders;
  62. paysConfig: ExportManagerShopsPaysConfig;
  63. products: ExportManagerShopsProducts;
  64. productBrands: ExportManagerShopsProductBrands;
  65. productCategory: ExportManagerShopsProductCategory;
  66. productSuppliers: ExportManagerShopsProductSuppliers;
  67. productTypes: ExportManagerShopsProductTypes;
  68. productTypesItem: ExportManagerShopsProductTypesItem;
  69. shippingsConfig: ExportManagerShopsShippingsConfig;
  70. users: ExportManagerShopsUsers;
  71. }
  72. }
  73. wechat: {
  74. wechat: ExportWechatWechat;
  75. }
  76. }
  77. }