UNPKG

@anglr/rest

Version:

Angular module representing rest services

9 lines 417 B
import { PromiseOr } from '@jscrpt/common'; import type { RESTClientBase } from '../../misc/classes/restClientBase'; /** * Function that is used as parameter transform function */ export interface ParameterTransformFunc<TData = unknown, TTransformedData = TData> { (this: RESTClientBase, data: TData, ...args: unknown[]): PromiseOr<TTransformedData>; } //# sourceMappingURL=parameterTransform.interface.d.ts.map