UNPKG

@dill-pixel/plugin-rollbar

Version:

Rollbar

17 lines 676 B
import { 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<RollbarPluginOptions> { readonly rollbar: Rollbar; } export declare class RollbarPlugin extends Plugin<RollbarPluginOptions> implements IRollbarPlugin { protected _options: RollbarPluginOptions; private _rollbar; get rollbar(): Rollbar; private hello; initialize(options: Partial<RollbarPluginOptions>, _app: IApplication): Promise<void>; } //# sourceMappingURL=RollbarPlugin.d.ts.map