kd-deliver-api-pro
Version:
KD-DELIVER-API-PRO
32 lines (31 loc) • 731 B
TypeScript
interface SurfaceModel {
temp: string;
}
interface ColorModel {
r: string;
g: string;
b: string;
a: string;
}
interface GateModel {
classification: string;
number: string;
state: string;
}
interface MachineModel {
classification: string;
number: string;
val: string;
}
interface PumpModel {
temp: string;
val: string;
}
declare const _default: {
GateControl: (params: GateModel) => Promise<any>;
MachineAni: (params: MachineModel) => Promise<any>;
RiverSurface: (params: SurfaceModel) => Promise<any>;
RiverColor: (params: ColorModel) => Promise<any>;
WaterPump: (params: PumpModel) => Promise<any>;
};
export default _default;