igniteui-react-core
Version:
Ignite UI React Core.
23 lines (22 loc) • 444 B
TypeScript
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;