UNPKG

web-dev-server

Version:

Node.js simple http server for common development or training purposes.

19 lines (18 loc) 561 B
export interface INamespace { /** * Set session namespace expiration by request(s) count. * @param hoops */ SetExpirationHoops(hoops: number): INamespace; /** * Set session namespace expiration by expiration seconds. * Zero (`0`) means "until the browser is closed" if there is no more * higher namespace expirations in whole session. * @param seconds */ SetExpirationSeconds(seconds: number): INamespace; /** * @summary Indexer for any value; */ [key: string]: any; }