UNPKG

@constructorfleet/ultimate-govee

Version:

Library for interacting with Govee devices written in Typescript.

18 lines 477 B
import { Credentials, ClientId, AccountId } from '../../common'; import { OAuthData } from '../../data'; export type AccountAuthData = { clientId: ClientId; accountId: AccountId; oauth: OAuthData; }; export type BffAuthData = { clientId: ClientId; accountId: AccountId; oauth: OAuthData; }; export type AuthState = { credentials?: Credentials; accountAuth?: AccountAuthData; bffAuth?: BffAuthData; }; //# sourceMappingURL=auth.state.d.ts.map