UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines (8 loc) 272 B
/** * Returns the last date of the month of the given date. * @param {Date} dateFrom * @return Date */ import { GxDate } from "../types/gxdate"; import { GxDatetime } from "../types/gxdatetime"; export declare const endOfMonth: (dateFrom: GxDate | GxDatetime) => any;