//#region ../@warlock.js/seal/src/helpers/date-helpers.d.ts /** * Detect if value is a date value or field name * * Date values: * - Date instance * - Number (timestamp) * - String with date separators (- or /) * * Field names: * - Strings without - or / * * @param value - Value to check * @returns true if it's a date value, false if it's a field name */ declare function isDateValue(value: any): boolean; //#endregion export { isDateValue }; //# sourceMappingURL=date-helpers.d.mts.map