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)

10 lines (9 loc) 285 B
import { Injector, Type } from '@angular/core'; /** * Holds dependency injector to allow use ше in internal the lib classes. */ export declare class DependencyInjector { private static _injector; static get<T>(type: Type<T>): T; static set injector(value: Injector); }