UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

14 lines (13 loc) 446 B
import { GxDate } from "../types/gxdate"; import { GxDatetime } from "../types/gxdatetime"; /** * Sets a cookie * @param {string} name * @param {string} value * @param {string} path * @param {GxDate} expiration * @param {string} domain * @param {number} secure * @return number */ export declare const setCookie: (name: string, value: string, path?: string, expiration?: GxDate | GxDatetime, domain?: string, secure?: number) => number;