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