ng2-rest 16.5.5 → 16.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -106,10 +106,14 @@ export declare namespace Models {
106
106
  private circular;
107
107
  constructor(responseText: string | Blob, isArray: boolean, entity: Mapping.Mapping, circular: Circ[]);
108
108
  get blob(): Blob;
109
- get booleanValue(): boolean;
109
+ get booleanValue(): boolean | undefined;
110
+ get numericValue(): number | undefined;
110
111
  get rawJson(): Partial<T>;
111
112
  get json(): T;
112
- get text(): string;
113
+ /**
114
+ * undefined when blob
115
+ */
116
+ get text(): string | undefined;
113
117
  }
114
118
  class ErrorBody extends BaseBody {
115
119
  private data;