ets-fe-ng-sdk 20.3.3 → 20.3.4
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.
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +11 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2173,6 +2173,16 @@ declare namespace EVFunctions {
|
|
|
2173
2173
|
* @returns
|
|
2174
2174
|
*/
|
|
2175
2175
|
function extendRoute(route: Route, indexComponent?: Type<any>, indexLazyModule?: LoadChildrenCallback): Routes;
|
|
2176
|
+
type IExtendRouteIndexPage = Route & {
|
|
2177
|
+
component?: Type<any>;
|
|
2178
|
+
/**@deprecated */
|
|
2179
|
+
lazyComponent?: () => Type<unknown> | Observable<Type<unknown> | DefaultExport<Type<unknown>>> | Promise<Type<unknown> | DefaultExport<Type<unknown>>>;
|
|
2180
|
+
/**@deprecated */
|
|
2181
|
+
lazyModule?: LoadChildrenCallback;
|
|
2182
|
+
redirectToIndex?: boolean;
|
|
2183
|
+
title?: string;
|
|
2184
|
+
hideTitle?: boolean;
|
|
2185
|
+
};
|
|
2176
2186
|
/**
|
|
2177
2187
|
*
|
|
2178
2188
|
* @param route
|
|
@@ -2193,16 +2203,7 @@ declare namespace EVFunctions {
|
|
|
2193
2203
|
* ```
|
|
2194
2204
|
* @returns
|
|
2195
2205
|
*/
|
|
2196
|
-
function extendRoute2(route: Route, indexPage?:
|
|
2197
|
-
component?: Type<any>;
|
|
2198
|
-
/**@deprecated */
|
|
2199
|
-
lazyComponent?: () => Type<unknown> | Observable<Type<unknown> | DefaultExport<Type<unknown>>> | Promise<Type<unknown> | DefaultExport<Type<unknown>>>;
|
|
2200
|
-
/**@deprecated */
|
|
2201
|
-
lazyModule?: LoadChildrenCallback;
|
|
2202
|
-
redirectToIndex?: boolean;
|
|
2203
|
-
title?: string;
|
|
2204
|
-
hideTitle?: boolean;
|
|
2205
|
-
}): Routes;
|
|
2206
|
+
function extendRoute2(route: Route, indexPage?: IExtendRouteIndexPage): Routes;
|
|
2206
2207
|
/**
|
|
2207
2208
|
* Concatenates two strings and accounts for null values
|
|
2208
2209
|
* @param text1 First string to concatenate
|