@ashetm/ng-utility
Version:
``@ashetm/ng-utility`` is a library that provide some utilities classes, like pipes.
9 lines (8 loc) • 448 B
TypeScript
import { PipeTransform } from '@angular/core';
import { IsDateBefore } from './is-date-before.pipe';
import * as i0 from "@angular/core";
export declare class IsDatePast<T extends Date | number | string> extends IsDateBefore<T> implements PipeTransform {
transform(value: T): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<IsDatePast<any>, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<IsDatePast<any>, "isDatePast", true>;
}