UNPKG

@jonstuebe/allot-utils

Version:

Util functions for Allot

7 lines (6 loc) 443 B
import { PayPeriods } from "./types"; export declare function chunk(array: Array<any>, size: number): Array<any>; export declare function parseISO(dateISO: string): Date; export declare function isBetween(date: Date, start: Date, end: Date, includeEqual?: boolean): Boolean; export declare function formatCurrency(amount: number, country?: string, currency?: string): string; export declare function renderTable(payPeriods: PayPeriods): void;