@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) • 440 B
TypeScript
import { QBasePath } from "../base/QBasePath";
import { identityFormatter } from "./IdentityFormatter";
export declare class QDatePath<ConvertedType = string> extends QBasePath<string, ConvertedType> {
protected formatValue: typeof identityFormatter;
year: () => import("./QNumberPath").QNumberPath<number>;
month: () => import("./QNumberPath").QNumberPath<number>;
day: () => import("./QNumberPath").QNumberPath<number>;
}