UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines (9 loc) 286 B
/** * Add months to a date * @param {GxDate | GxDatetime} date * @param {number} months * @return any */ import { GxDate } from "../types/gxdate"; import { GxDatetime } from "../types/gxdatetime"; export declare const addMonths: (date: GxDate | GxDatetime, months: number) => any;