taon 19.0.28 → 19.0.29
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/browser/fesm2022/taon.mjs +100 -91
- package/browser/fesm2022/taon.mjs.map +1 -1
- package/browser/lib/base-classes/base-angular-service.d.ts +1 -0
- package/browser/package.json +1 -1
- package/client/fesm2022/taon.mjs +100 -91
- package/client/fesm2022/taon.mjs.map +1 -1
- package/client/lib/base-classes/base-angular-service.d.ts +1 -0
- package/client/package.json +1 -1
- package/lib/base-classes/base-angular-service.d.ts +1 -0
- package/lib/base-classes/base-angular-service.js +9 -0
- package/lib/base-classes/base-angular-service.js.map +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/endpoint-context.js +1 -1
- package/lib/endpoint-context.js.map +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/package.json +1 -1
- package/tmp-environment.json +3 -3
- package/websql/fesm2022/taon.mjs +100 -91
- package/websql/fesm2022/taon.mjs.map +1 -1
- package/websql/lib/base-classes/base-angular-service.d.ts +1 -0
- package/websql/package.json +1 -1
|
@@ -15,6 +15,7 @@ export declare abstract class BaseAngularsService {
|
|
|
15
15
|
* that is running on localhost (normal NodeJS/ExpressJS mode).
|
|
16
16
|
*/
|
|
17
17
|
get host(): string;
|
|
18
|
+
injectController<T>(ctor: new (...args: any[]) => T): T;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAngularsService, never>;
|
|
19
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<BaseAngularsService>;
|
|
20
21
|
}
|