/** * Gets the current date as a Unix timestamp. * * Returns the Unix timestamp for the start of the current day (00:00:00). * * @returns The Unix timestamp for the current date. * * @example Get the Unix timestamp for today's date * ```ts * import { assertEquals } from "jsr:@std/assert"; * import dayjs from "dayjs"; * * const todayTimestamp = today(); * assertEquals(typeof todayTimestamp, 'number'); * // Should match the start of today * assertEquals(todayTimestamp, dayjs().startOf('day').unix()); * ``` */ export default function today(): number; //# sourceMappingURL=today.d.ts.map