/** * Enum which defines the strategy which can be configured for generating a new session number */ export declare const enum SessionNumberStrategy { /** * Generates a session number which will always start with 0. Sessions coming afterwards will be incremented, * that means the next session number would be 1. */ Default = 0, /** * Generates a session number which will always start with a random number. Sessions coming afterwards will be incremented, * that means the next session number would be random number + 1. If a RandomNumberProvider was provided in OpenKitBuilder, * it will also be used here. * * If the next session number would be outside of the value range, we will generate another random number and start from there. */ Random = 1 } //# sourceMappingURL=SessionNumberStrategy.d.ts.map