@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) • 496 B
TypeScript
import { NumericEnumLike } from "../../enum/EnumModel";
import { QNumericEnumCollection } from "../../primitve-collection/PrimitveCollections";
import { QCollectionPath } from "../QCollectionPath";
export declare class QNumericEnumCollectionPath<EnumType extends NumericEnumLike> extends QCollectionPath<QNumericEnumCollection<EnumType>> {
protected theEnum: EnumType;
constructor(path: string, theEnum: EnumType);
getEntity(withPrefix?: boolean): QNumericEnumCollection<EnumType>;
}