@stacksjs/ts-validation
Version:
A simple TypeScript starter kit using Bun.
9 lines • 314 B
TypeScript
import type { IsAfterOptions } from '../types/date';
/**
* Check if the string is After
*
* @param date - Options object
* @param options - Options object
* @returns True if the string matches the validation, false otherwise
*/
export declare function isAfter(date: string, options: IsAfterOptions): boolean;