@iotize/tap
Version:
IoTize Device client for Javascript
7 lines (6 loc) • 315 B
TypeScript
import { TapResponseFrame } from '@iotize/tap/client/api';
export declare class TapResponseFrameBuilder {
static SUCCESS(data?: Uint8Array): TapResponseFrame;
static ERROR(status?: number, data?: Uint8Array): TapResponseFrame;
static create(status: number, data?: Uint8Array): TapResponseFrame;
}