fix(core): update

This commit is contained in:
2022-02-24 20:16:21 +01:00
parent af55d7ad89
commit 770657da4d
15 changed files with 27843 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import * as plugins from './bobcat.plugins';
/**
* maps to an individual bobcat miner
*/
export class Bobcat {
}

View File

@ -0,0 +1,8 @@
import * as plugins from './bobcat.plugins';
/**
*
*/
export class BobcatManager {
}

5
ts/bobcat.plugins.ts Normal file
View File

@ -0,0 +1,5 @@
import * as smartrequest from '@pushrocks/smartrequest';
export {
smartrequest
}

2
ts/index.ts Normal file
View File

@ -0,0 +1,2 @@
export * from './bobcat.classes.bobcatmanager';
export * from './bobcat.classes.bobcat';