UNPKG

ravendb

Version:
18 lines 541 B
export type DateContext = "From" | "To"; export interface DateWithContext { date: Date; context: DateContext; } export declare class DatesComparator { static compare(lhs: DateWithContext, rhs: DateWithContext): number; } /** * Date or MinDate if null */ export declare function leftDate(date: Date): DateWithContext; /** * Date or MaxDate if null */ export declare function rightDate(date: Date): DateWithContext; export declare function definedDate(date: Date): DateWithContext; //# sourceMappingURL=DatesComparator.d.ts.map