IuryNogueira/myreef

View on GitHub
thereef/src/domain/models/OnOffActuator.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type OnOffActuator = {
id: number;
name: string;
description: string;
current_on_off_value: OnOffValue;
on_off_values: OnOffValue[];
};
 
type OnOffValue = {
created_at: string;
id: number;
value: boolean;
};