import { Scope } from '@sentry/hub'; import { Breadcrumb, User } from '@sentry/types'; /** * Extends the scope methods to set scope on the Native SDKs */ export declare class CordovaScope extends Scope { /** * @inheritDoc */ setUser(user: User | null): this; /** * @inheritDoc */ setTag(key: string, value: string): this; /** * @inheritDoc */ setTags(tags: { [key: string]: string; }): this; /** * @inheritDoc */ setExtras(extras: { [key: string]: any; }): this; /** * @inheritDoc */ setExtra(key: string, extra: any): this; /** * @inheritDoc */ addBreadcrumb(breadcrumb: Breadcrumb, maxBreadcrumbs?: number): this; /** * @inheritDoc */ clearBreadcrumbs(): this; /** * @inheritDoc */ setContext(key: string, context: { [key: string]: any; } | null): this; } //# sourceMappingURL=scope.d.ts.map