UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

6 lines (5 loc) 199 B
import { TimeUnit } from '../convert-units/index.js'; /** * Modifies a date by a given amount of time units */ export declare function modifyDate(date: Date, amount: number, unit: TimeUnit): Date;