mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 20:34:55 +00:00
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
export interface TuyaResponseInterface {
|
|
success: boolean;
|
|
msg?: string;
|
|
result: boolean | { id: string };
|
|
}
|