vue.d.ts 394 B

123456789101112
  1. import { BasePlugin, Span } from '@opencensus/core';
  2. export declare class VuePlugin extends BasePlugin {
  3. private rendererResults;
  4. constructor(moduleName: string);
  5. protected applyPatch(): any;
  6. applyUnpatch(): void;
  7. private getPatchCreateRenderer;
  8. private getPatchRenderToString;
  9. patchEnd(span: Span): () => void;
  10. }
  11. declare const plugin: VuePlugin;
  12. export { plugin };