UNPKG

sentry-integration-libsql-client

Version:
12 lines (9 loc) 378 B
import { Client } from '@libsql/client'; import { Integration } from '@sentry/types'; interface LibSQLIntegrationOptions { tracing?: boolean; breadcrumbs?: boolean; errors?: boolean; } declare function libsqlIntegration(client: Client, Sentry: any, userOptions?: LibSQLIntegrationOptions): Integration; export { type LibSQLIntegrationOptions, libsqlIntegration };