Type Alias PermittedControllerType<ControllerType>

PermittedControllerType<ControllerType>: ControllerType & {
    manifest: Required<Pick<ControllerType, "manifest">>;
}

Type Parameters

  • ControllerType extends {
        manifest: any;
    }
""