UNPKG

@manzoomeh/basicore.server

Version:

java script version of Manzoomeh Negaran http web server for nodejs

25 lines (22 loc) 364 B
export default class Request { /** * @type {NodeJS.Dict<string|string[]>} */ cms; /** * @type {NodeJS.Dict<string|string[]>} */ request; /** * @returns {string} */ get Url() { return this.request["url"]; } /** * @returns {string} */ get FullUrl() { return this.request["full-url"]; } }