UNPKG

@configurator/ravendb

Version:
12 lines (11 loc) 426 B
export type DateContext = "From" | "To"; export interface DateWithContext { date: Date; context: DateContext; } export declare class DatesComparator { static compare(lhs: DateWithContext, rhs: DateWithContext): number; } export declare function leftDate(date: Date): DateWithContext; export declare function rightDate(date: Date): DateWithContext; export declare function definedDate(date: Date): DateWithContext;