UNPKG

ngx-restful-client

Version:

The ultimate Angular library to exquisitely declare and implement the REST APIs you'll use in your application.

9 lines (8 loc) 267 B
export declare class StringBuilder { private _building; constructor(str?: string); append(value: string | number): StringBuilder; insert(offset: number, value: string | number): StringBuilder; indexOf(c: string): number; toString(): string; }