UNPKG

@lagoshny/ngx-hateoas-client

Version:

This client used to develop `Angular 12+` applications working with RESTfulll server API with HAL/JSON response type (supports server implementation by Spring HATEOAS)

13 lines (12 loc) 510 B
import { Stage } from './stage.enum'; /** * Simplify logger calls. */ export declare class StageLogger { static resourceBeginLog(resource: object | string, method: string, params?: object): void; static resourceEndLog(resource: object | string, method: string, params: object): void; static stageLog(stage: Stage, params: object): void; static stageErrorLog(stage: Stage, params: object): void; static stageWarnLog(stage: Stage, params: object): void; private static prepareParams; }