6 lines
266 B
TypeScript
6 lines
266 B
TypeScript
import * as moment from 'moment';
|
|
import { PipeTransform } from '@angular/core';
|
|
export declare class IsBeforePipe implements PipeTransform {
|
|
transform(value: moment.MomentInput, otherValue: moment.MomentInput, unit?: moment.unitOfTime.StartOf): boolean;
|
|
}
|