logger.d.ts 392 B

1234567891011121314
  1. export declare function getInstance(): any;
  2. /**
  3. * -> normal proxy
  4. * => router
  5. * ~> pathRewrite
  6. * ≈> router + pathRewrite
  7. *
  8. * @param {String} originalPath
  9. * @param {String} newPath
  10. * @param {String} originalTarget
  11. * @param {String} newTarget
  12. * @return {String}
  13. */
  14. export declare function getArrow(originalPath: any, newPath: any, originalTarget: any, newTarget: any): string;