mod_defs.d.ts 244 B

123456789101112131415161718
  1. declare module "app/core/controllers/all" {
  2. let json: any;
  3. export {json};
  4. }
  5. declare module "app/core/routes/all" {
  6. let json: any;
  7. export {json};
  8. }
  9. declare module "app/core/services/all" {
  10. let json: any;
  11. export default json;
  12. }