workano-js-sdk
Version:
Workano Communications SDK - A modern JavaScript SDK for WebRTC and VoIP integration.
21 lines • 544 B
TypeScript
import { Session } from '../../lib/index';
export type TLoginRequest = {
appId: string;
tokenExpiration: number;
server: string;
username: string;
password: string;
isMobile?: boolean;
onTokenRefreshed: (session: Session) => void;
};
export type TValidateToken = {
token: string;
refreshToken: string;
appId: string;
tokenExpiration: number;
server: string;
isMobile?: boolean;
onTokenRefreshed: (session: Session) => void;
};
export type { Session };
//# sourceMappingURL=models.d.ts.map