UNPKG

@odata2ts/odata-query-objects

Version:

Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion

9 lines (8 loc) 449 B
import { QBasePath } from "../base/QBasePath"; import { identityFormatter } from "./IdentityFormatter"; export declare class QTimeOfDayPath<ConvertedType = string> extends QBasePath<string, ConvertedType> { protected formatValue: typeof identityFormatter; hour: () => import("./QNumberPath").QNumberPath<number>; minute: () => import("./QNumberPath").QNumberPath<number>; second: () => import("./QNumberPath").QNumberPath<number>; }