wa-chat-server
Version:
Watson Assistant powered chat server
11 lines (10 loc) • 399 B
TypeScript
export interface ISessionStorageConfig {
/** Determines if the storage can be used for single use only */
readonly singleUseStorageOnly?: boolean;
/** 0 means that session never expires */
lifeTimeMS?: number;
/** whether we will allow to create a new session with a specified id */
allowForeignSessionIds?: boolean;
/** Custom configuration */
[key: string]: any;
}