UNPKG

@sap-cloud-sdk/odata-common

Version:

SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.

15 lines (14 loc) 733 B
import { OrderableFilterFunction } from './orderable-filter-function'; import type { EntityBase } from '../entity-base'; import type { FilterFunctionParameterType } from './filter-function-base'; /** * Representation of a filter function, that returns a value of type string. */ export declare class StringFilterFunction<EntityT extends EntityBase> extends OrderableFilterFunction<EntityT, string> { /** * Creates an instance of StringFilterFunction. * @param functionName - Name of the function that returns a string value. * @param parameters - Representation of the parameters passed to the filter function. */ constructor(functionName: string, parameters: FilterFunctionParameterType<EntityT>[]); }