express.d.ts 406 B

12345678910111213
  1. import { BasePlugin } from '@opencensus/core';
  2. export declare const kMiddlewareStack: unique symbol;
  3. export declare class ExpressPlugin extends BasePlugin {
  4. private kPatched;
  5. constructor(moduleName: string);
  6. protected applyPatch(): any;
  7. applyUnpatch(): void;
  8. private applyLayerPatch;
  9. private safePush;
  10. private patchEnd;
  11. }
  12. declare const plugin: ExpressPlugin;
  13. export { plugin };