UNPKG

@snapp-store/snapp-box-sdk

Version:
12 lines (11 loc) 500 B
import type { BaseHttpRequest } from './core/BaseHttpRequest'; import { MethodsService } from './services/MethodsService'; import { PullingService } from './services/PullingService'; import { WebhooksService } from './services/WebhooksService'; export declare class SnappBox { readonly methods: MethodsService; readonly pulling: PullingService; readonly webhooks: WebhooksService; readonly request: BaseHttpRequest; constructor(apiKey: string, mode?: 'staging' | 'production'); }