pailingual-odata
Version:
TypeScript client for OData v4 services
14 lines (13 loc) • 465 B
text/typescript
export interface Options {
credentials?: RequestCredentials,
enumPrefixFree?: boolean,
enableUnqualifiedNameCall?: boolean,
fetch?: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
format?: string;
}
export interface ExtendOptions {
apiContextFn?: Record<string, Function>;
collectionSourceFn?: Record<string, Function>;
singleSourceFn?: Record<string, Function>;
queryFn?: Record<string, Function>;
}