ngx-restful-client
Version:
The ultimate Angular library to exquisitely declare and implement the REST APIs you'll use in your application.
16 lines (15 loc) • 611 B
TypeScript
export declare const concatPath: (root: string, child: string) => string;
/**
* <p>
* Define um RestResource que pode ter um RestResource pai.
* Se você quiser declarar sua API, mas não quiser usar a implementação HttpClient incorporada, esse é o caminho.
* </p>
* <p>
* Defines a RestResource that may have a parent RestResource.
* If you want to declare your API but don't want to make use of the embedded HttpClient implementation, that's the way.
* </p>
*/
export declare class LeanRestResource {
protected readonly uri: string;
constructor(path: string, parent?: LeanRestResource);
}