UNPKG

@apihawk/gear-sdk

Version:

The ApiHawk GEAR SDK

16 lines (15 loc) 508 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const billia_sdk_1 = require("@apihawk/billia-sdk"); const gear_sdk_jobs_1 = require("./services/gear-sdk-jobs"); class GearSDK extends billia_sdk_1.BilliaSDKBase { constructor(init, connection) { super(init, connection); // Load all services this.gearSDKJobs = new gear_sdk_jobs_1.GearSDKJobs(this.connection); } get Jobs() { return this.gearSDKJobs; } } exports.GearSDK = GearSDK;