refactor: migrate to strict template checking

This commit is contained in:
2023-12-06 16:23:26 +01:00
parent 791b5c895d
commit 288a49113f
70 changed files with 204 additions and 236 deletions

View File

@@ -13,7 +13,7 @@
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {Component, Input} from '@angular/core';
import {SCThingOrigin} from '@openstapps/core';
import {SCThingUserOrigin, SCThingRemoteOrigin} from '@openstapps/core';
/**
* TODO
@@ -26,5 +26,5 @@ export class OriginDetailComponent {
/**
* TODO
*/
@Input() origin: SCThingOrigin;
@Input() origin: SCThingUserOrigin | SCThingRemoteOrigin;
}