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) 211 B
import { TimeUnit } from '../convert-units/index.js'; /** * Subtracts from a date by a given amount of time units */ export declare function subtractFromDate(date: Date, amount: number, unit: TimeUnit): Date;