@itwin/core-common
Version:
iTwin.js components common to frontend and backend
17 lines • 574 B
TypeScript
/** @packageDocumentation
* @module RpcInterface
*/
import { GuidString } from "@itwin/core-bentley";
/** Properties that identify a session.
* @public
* @extensions
*/
export interface SessionProps {
/** Used for logging and usage tracking to identify the application */
readonly applicationId: string;
/** Used for logging and usage tracking to identify the application version */
readonly applicationVersion: string;
/** Used for logging to identify a session */
readonly sessionId: GuidString;
}
//# sourceMappingURL=SessionProps.d.ts.map