@snapp-store/snapp-box-sdk
Version:
A javascript sdk for snapp box api
12 lines (11 loc) • 500 B
TypeScript
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');
}