UNPKG

@odoo/o-spreadsheet

Version:
6 lines (5 loc) 466 B
import { EvaluatedDateCriterion } from "../types/generic_criterion"; import { Locale } from "../types/locale"; /** Get all the dates values of a criterion converted to numbers, converting date values such as "today" to actual dates */ export declare function getDateNumberCriterionValues(criterion: EvaluatedDateCriterion, locale: Locale): (number | undefined)[]; export declare function getDateCriterionFormattedValues(values: string[], locale: Locale): string[];