UNPKG

@ashetm/ng-utility

Version:

``@ashetm/ng-utility`` is a library that provide some utilities classes, like pipes.

10 lines (9 loc) 528 B
import { PipeTransform } from '@angular/core'; import { IsDate } from './is-date.pipe'; import * as i0 from "@angular/core"; export declare class IsDateBetween<T extends Date | number | string> extends IsDate<T> implements PipeTransform { transform(value: T, minDate: T, maxDate: T): boolean; transform(value: T, [minDate, maxDate]: [T, T]): boolean; static ɵfac: i0.ɵɵFactoryDeclaration<IsDateBetween<any>, never>; static ɵpipe: i0.ɵɵPipeDeclaration<IsDateBetween<any>, "isDateBetween", true>; }