igniteui-react-core
Version:
Ignite UI React Core.
30 lines (29 loc) • 1.26 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
/**
* Enumerates the join types available to the flat data provider.
*/
export var FlatDataProviderJoinType = /*@__PURE__*/ (function (FlatDataProviderJoinType) {
/**
* Performs an inner join.
*/
FlatDataProviderJoinType[FlatDataProviderJoinType["Join"] = 0] = "Join";
/**
* Performs a left outer join.
*/
FlatDataProviderJoinType[FlatDataProviderJoinType["Left"] = 1] = "Left";
/**
* Performs a right outer join.
*/
FlatDataProviderJoinType[FlatDataProviderJoinType["Right"] = 2] = "Right";
return FlatDataProviderJoinType;
})({});
/**
* @hidden
*/
export let FlatDataProviderJoinType_$type = /*@__PURE__*/ markEnum('FlatDataProviderJoinType', 'Join,0|Left,1|Right,2');