UNPKG

igniteui-react-core

Version:
23 lines (22 loc) 444 B
import { Type } from "./type"; /** * Enumerates the join types available to the flat data provider. */ export declare enum FlatDataProviderJoinType { /** * Performs an inner join. */ Join = 0, /** * Performs a left outer join. */ Left = 1, /** * Performs a right outer join. */ Right = 2 } /** * @hidden */ export declare let FlatDataProviderJoinType_$type: Type;