@kit-data-manager/react-search-component
Version:
All-in-one component for rendering an elastic search UI for searching anything. Built-in support for visualizing related items in a graph and resolving unique identifiers.
35 lines (34 loc) • 697 B
TypeScript
export declare class DateRangeBuilder {
static dateYears(): ({
from: string;
name: string;
to?: undefined;
} | {
from: string;
to: string;
name: string;
} | {
to: string;
name: string;
from?: undefined;
})[];
static dateTimes(): ({
from: string;
to: string;
name: string;
} | {
to: string;
name: string;
from?: undefined;
})[];
static dateTimesNoMillis(): ({
from: string;
to: string;
name: string;
} | {
to: string;
name: string;
from?: undefined;
})[];
private static rawDateTime;
}