UNPKG

@dill-pixel/plugin-rollbar

Version:

Rollbar

17 lines 691 B
import { Application, IApplication, IPlugin, Plugin } from 'dill-pixel'; import { default as Rollbar } from 'rollbar'; export interface RollbarPluginOptions extends Rollbar.Configuration { isDev?: boolean; debug?: boolean; } export interface IRollbarPlugin extends IPlugin<Application, RollbarPluginOptions> { readonly rollbar: Rollbar; } export declare class RollbarPlugin extends Plugin<Application, RollbarPluginOptions> implements IRollbarPlugin { private _options; private _rollbar; get rollbar(): Rollbar; private hello; initialize(options: Partial<RollbarPluginOptions>, _app: IApplication): Promise<void>; } //# sourceMappingURL=RollbarPlugin.d.ts.map