unique alias should only be a string

This commit is contained in:
Jacob Overgaard
2023-01-17 11:06:55 +01:00
parent 21b37f303e
commit ef68d61ac0

View File

@@ -1,7 +1,5 @@
import { ContextToken } from '@umbraco-cms/context-api';
export interface UmbControllerInterface<T> {
get unique(): string | ContextToken<T>;
export interface UmbControllerInterface {
get unique(): string;
hostConnected(): void;
hostDisconnected(): void;
destroy(): void;