theta-client-react-native
Version:
This library provides a way to control RICOH THETA using.
17 lines (16 loc) • 317 B
text/typescript
/**
* Authentication information used for client mode
*/
export type DigestAuth = {
/**
* User name
*/
username: string;
/**
* Password
*
* If omitted, the default password is used.
* Default password is "THETA" + "XX" after the beginning of the serial number.
*/
password?: string;
};