import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; import { scalar } from "./base.scalar"; export declare namespace freshnessEnum { enum Id { FRESH = "fresh", DAY = "day", WEEK = "week", MONTH = "month", QUARTER = "quarter", YEAR = "year", OLD = "old" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { findByTime(createdAt: scalar.IsoDatetime, currentTime?: scalar.IsoDatetime): Id; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }