@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
37 lines • 838 B
TypeScript
import { GoveeAPIResponse } from '../../govee-api.models';
export declare class PairUrl {
dark?: string;
light?: string;
}
export declare class SkuProduct {
ic: number;
pairUrl?: PairUrl;
model: string;
skuUrl?: string;
spec?: string;
extInfo?: string;
goodsType: number;
}
export declare class SkuModel {
hintContent?: string;
iconUrl?: string;
modelName: string;
online?: boolean;
productId: number;
showingSku?: string;
products: SkuProduct[];
}
export declare class SkuGroup {
id: number;
name: string;
models: SkuModel[];
}
export declare class Category {
name: string;
id: number;
groups: SkuGroup[];
}
export declare class SkuListResponse extends GoveeAPIResponse {
categories: Category[];
}
//# sourceMappingURL=sku-list.response.d.ts.map