12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
import {DeviceService} from './services/Devices'
|
|
declare module "xblox" {
|
|
|
|
}
|
|
declare module "xblox/services"{
|
|
export {DeviceService} from './services/Devices';
|
|
}
|
|
export namespace xblox{
|
|
|
|
}
|
|
|