Function createConstructorOfViewInterfaceDeclaration

  • create view constructor interface of Type T

    interface ConstructorOfView<T> {
    new(): T;
    readonly prototype: T;
    }

    Returns InterfaceDeclaration