UNPKG

odata

Version:

o.js is a isomorphic Odata Javascript library to simplify the request of data. The main goal is to build a standalone, lightweight and easy to understand Odata lib.

15 lines (14 loc) 308 B
export interface OdataQuery { $filter?: string; $orderby?: string; $expand?: string; $select?: string; $skip?: number; $top?: number; $count?: boolean; $search?: string; $format?: string; $compute?: string; $index?: number; [key: string]: any; }