//#region src/js/constants.d.ts /** Field patterns to detect date/time fields by name */ declare const DATE_FIELD_PATTERNS: readonly ["date", "time", "period", "timestamp"]; /** Field patterns to detect name/category fields by name */ declare const NAME_FIELD_PATTERNS: readonly ["name", "label", "app", "user", "creator", "browser", "category"]; /** Patterns that indicate a date field is metadata, not for charting */ declare const METADATA_DATE_PATTERNS: readonly ["created", "updated", "modified", "deleted", "last_"]; //#endregion export { DATE_FIELD_PATTERNS, METADATA_DATE_PATTERNS, NAME_FIELD_PATTERNS }; //# sourceMappingURL=constants.d.ts.map