UNPKG

@constructorfleet/ultimate-govee

Version:

Library for interacting with Govee devices written in Typescript.

14 lines 403 B
export declare enum FieldDataType { INTEGER = "INTEGER", ENUM = "ENUM", ARRAY = "Array", STRUCT = "STRUCT" } export declare abstract class Parameter<DataType extends FieldDataType> { dataType: DataType; } export declare abstract class Field<DataType extends FieldDataType> extends Parameter<DataType> { name: string; isRequired: boolean; } //# sourceMappingURL=field.d.ts.map