@nestjs-mod/files-afat
Version:
Files UI components and tools for AFAT (Angular, Formly, Antd, Transloco) and rest-sdk for work with backend of this module from Angular appliaction
12 lines (11 loc) • 382 B
TypeScript
import { HttpParameterCodec } from '@angular/common/http';
/**
* Custom HttpParameterCodec
* Workaround for https://github.com/angular/angular/issues/18261
*/
export declare class CustomHttpParameterCodec implements HttpParameterCodec {
encodeKey(k: string): string;
encodeValue(v: string): string;
decodeKey(k: string): string;
decodeValue(v: string): string;
}