Files
backend/libs/common/src/integrations/tuya/interfaces/tuya.response.interface.ts
2024-11-05 00:48:54 +04:00

6 lines
115 B
TypeScript

export interface TuyaResponseInterface {
success: boolean;
msg?: string;
result: boolean | { id: string };
}