@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
23 lines • 495 B
TypeScript
export type OAuthData = {
accessToken: string;
refreshToken: string;
clientId: string;
expiresAt: number;
};
export type IoTData = {
certificate: string;
privateKey: string;
endpoint: string;
accountId: string;
clientId: string;
topic: string;
};
export type GoveeAccount = {
accountId: string;
clientId: string;
topic: string;
iot?: IoTData;
oauth?: OAuthData;
bffOAuth?: OAuthData;
};
//# sourceMappingURL=account-client.d.ts.map